Submission #248917

#TimeUsernameProblemLanguageResultExecution timeMemory
248917kostia244Ancient Books (IOI17_books)C++17
22 / 100
2088 ms82768 KiB
#include "books.h" #include<bits/extc++.h> using namespace std; const int maxn = 1<<20; using ll = long long; using namespace __gnu_pbds; using oset = tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>; ll vis[maxn][4], g[maxn]; ll minimum_walk(vector<int> p, int s) { oset pref, suf; vector<int> pos(p.size()); ll ans = 0, lst = -1; for(int i = 0; i < p.size(); i++) suf.insert(i), pos[p[i]] = i; for(int t, i = 0; i < p.size(); i++) { //cout << i << "::\n"; int v = p[i]; suf.erase(v); if(i != v) { vis[i][(v > i)*3]++; vis[i][1 + (pos[i]>i)]++; } t = pref.size()-pref.order_of_key(i+1); vis[i][1] += t, vis[i][3] += t; t = suf.order_of_key(i); vis[i][0] += t, vis[i][2] += t; g[i] = vis[i][0] + vis[i][1] + vis[i][2] + vis[i][3]; pref.insert(v); if(vis[i][0] + vis[i][2]) lst = i; //for(int j = 0; j < 4; j++) cout << vis[i][j] << " "; cout << endl; if(i) { assert(vis[i][0] == vis[i-1][2]); assert(vis[i][1] == vis[i-1][3]); } } for(int i = 0; i <= lst; i++) { for(int j = 0; j < 4; j++) { if(i == lst && j >= 2) break; if(!i && j < 2) continue; if(vis[i][j] == 0) { vis[i][j]++; vis[i + (j<2?-1:1)][j^3]++; } } } for(int i = 0; i < p.size(); i++) { //cout << vis[i][0] << " " << vis[i][1] << " " << vis[i][2] << " " << vis[i][3] << " " << g[i] << endl; vis[i][2] = vis[i][3] = max(vis[i][2], vis[i][3]); vis[i][0] = vis[i][1] = max(vis[i][0], vis[i][1]); ans += (vis[i][0] + vis[i][2]); } return ans; }

Compilation message (stderr)

books.cpp: In function 'll minimum_walk(std::vector<int>, int)':
books.cpp:15:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i = 0; i < p.size(); i++) suf.insert(i), pos[p[i]] = i;
                 ~~^~~~~~~~~~
books.cpp:16:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int t, i = 0; i < p.size(); i++) {
                    ~~^~~~~~~~~~
books.cpp:55:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i = 0; i < p.size(); i++) {
                 ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...