Last active
May 30, 2018 16:16
-
-
Save s3131212/dbe458f230206d606c7b92b62f8b1160 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <vector> | |
#include <cstring> | |
#include <queue> | |
using namespace std; | |
int main(){ | |
vector<int> n; | |
char str[100]; | |
char *pch; | |
priority_queue<int,vector<int>,greater<int> > pq; | |
cin>>str; | |
memset(&n, 0, sizeof(n)); | |
pch = strtok (str,","); | |
while (pch != NULL){ | |
n.push_back(atoi(pch)); | |
if(atoi(pch) % 2 == 0){ | |
pq.push(atoi(pch)); | |
} | |
pch = strtok (NULL, ","); | |
} | |
for(int i=0;i<n.size();i++){ | |
if(n[i] % 2 != 0){ | |
cout<<n[i]; | |
}else{ | |
int a = pq.top(); | |
pq.pop(); | |
cout<<a; | |
} | |
if(i != n.size() -1) | |
cout<<','; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment