Skip to content

Instantly share code, notes, and snippets.

@s3131212
Last active May 30, 2018 16:16
Show Gist options
  • Save s3131212/dbe458f230206d606c7b92b62f8b1160 to your computer and use it in GitHub Desktop.
Save s3131212/dbe458f230206d606c7b92b62f8b1160 to your computer and use it in GitHub Desktop.
#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