제출 #872439

#제출 시각아이디문제언어결과실행 시간메모리
872439ZeroDetecting Molecules (IOI16_molecules)C++17
컴파일 에러
0 ms0 KiB
vector<int> find_subset(int l, int u, vector<int> a){ int mn = 0,n = a.size(); vector<int> v; int s = 0; bool jj = true; for(int i=0,j=0; i < n && j < n;){ if(s>=l && s <= u){ if(jj)j--; else i++; if(i == j) v.pb(i); else v.pb(i);v.pb(j); break; } if(s < l) s += a[j],j++,jj=true; if(s>u) s-=a[i], i ++,jj=false; } return v; }

컴파일 시 표준 에러 (stderr) 메시지

molecules.cpp:1:1: error: 'vector' does not name a type
    1 | vector<int> find_subset(int l, int u, vector<int> a){
      | ^~~~~~