Submission #250592

#TimeUsernameProblemLanguageResultExecution timeMemory
250592aloo123Coins (IOI17_coins)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #include "coins.h" using namespace std; // const ll INF = 1e12; // const ll N =(1e5+5); // TODO : change value as per problem // const ll MOD = 1e9; vector<int> coin_flips(vector<int> b, int c) { int x = 0; for(int i = 0;i<64;i++){ if(b[i]) x ^= b[i]; } if(x == 0) { // even number of 1s vector<int> v; v.pb(c); return v; } else{ // odd number of 1s vector<int> v; v.pb(c ^ x); return v; } } int find_coin(vector<int> b) { int x =0; for(int i =0;i<64;i++) if(b[i]) x ^= b[i]; return x; }

Compilation message (stderr)

coins.cpp: In function 'std::vector<int> coin_flips(std::vector<int>, int)':
coins.cpp:19:11: error: 'class std::vector<int>' has no member named 'pb'
         v.pb(c);
           ^~
coins.cpp:25:11: error: 'class std::vector<int>' has no member named 'pb'
         v.pb(c ^ x);
           ^~