Submission #781614

#TimeUsernameProblemLanguageResultExecution timeMemory
781614DaktoDancing Elephants (IOI11_elephants)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #include "elephants.h" int n; int l; vector<int> v; vector<int> ind; void init(int N, int L, int X[]) { n = N; l=L; int.resize(n); for(int i=0; i<n; i++){ v.push_back(X[i]); ind[i]=X[i]; } sort(v.begin(), v.end()); } int update(int i, int y) { v.erase(lower_bound(v.begin(), v.end(), ind[i])); ind[i]=y; v.insert(lower_bound(v.begin(), v.end(), ind[i]), ind[i]); int res=0; long long last=-100000000; for(auto i:v){ if(i>last){ last=i+l; res++; } } return res; }

Compilation message (stderr)

elephants.cpp: In function 'void init(int, int, int*)':
elephants.cpp:17:6: error: expected unqualified-id before '.' token
   17 |   int.resize(n);
      |      ^