Submission #333034

#TimeUsernameProblemLanguageResultExecution timeMemory
333034strawberry2005Coins (IOI17_coins)C++14
Compilation error
0 ms0 KiB
//#include "coins.h"
#include<bits/stdc++.h>

using namespace std;

vector<int> coin_flips(vector<int> b, int c) {
    vector <int> flips;
    int temp=b[c];
    for(int i=0;i<c;i++){
        if(temp==b[i]) flips.push_back(i);
    }
    for(int i=c+1;i<64;i++){
        if(temp==b[i]) flips.push_back(i);
    }
    return flips;
}

int find_coin(vector<int> b) {
    int temp;
    if(count(v.begin(),v.end(),0)>1) temp=0;
    else temp=1;
    for(int i=0;i<63;i++){
        if(b[i]==temp) return(i);
    }
}

Compilation message (stderr)

coins.cpp: In function 'int find_coin(std::vector<int>)':
coins.cpp:20:14: error: 'v' was not declared in this scope
   20 |     if(count(v.begin(),v.end(),0)>1) temp=0;
      |              ^
coins.cpp:25:1: warning: control reaches end of non-void function [-Wreturn-type]
   25 | }
      | ^