Submission #33331

#TimeUsernameProblemLanguageResultExecution timeMemory
33331imaxblueCake (CEOI14_cake)C++14
0 / 100
1813 ms23348 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long #define mp make_pair #define pb push_back #define x first #define y second #define pii pair<int, int> #define p3i pair<pii, int> #define pll pair<ll, ll> #define p3l pair<pll, ll> #define lseg L, (L+R)/2, N*2+1 #define rseg (L+R)/2+1, R, N*2+2 #define ub upper_bound #define lb lower_bound #define pq priority_queue #define MN 1000000007 #define fox(k, x) for (int k=0; k<x; ++k) #define fox1(k, x) for (int k=1; k<=x; ++k) #define foxr(k, x) for (int k=x-1; k>=0; --k) #define fox1r(k, x) for (int k=x; k>0; --k) #define ms multiset #define flood(x) memset(x, 0x3f3f3f3f, sizeof x) #define drain(x) memset(x, 0, sizeof x) #define rng() (rand() >> 3)*rand() int n, s, q, gl, gr, t, k, x, p, z; int seg[2][1000005], a[250005]; char ch; vector<int> v; map<int, int> r; map<int, int>::iterator i; void up(int L, int R, int N){ if (L>gl || R<gl) return; if (L==R){ seg[t][N]=x; return; } up(lseg); up(rseg); seg[t][N]=max(seg[t][N*2+1], seg[t][N*2+2]); } int query(int L, int R, int N){ if (L==R){ return L-1; } if (seg[t][N*2+1]>x) query(lseg); else query(rseg); } void change(int P){ if (P<s){ gl=s-P; x=a[P]; t=0; up(1, s+1, 0); } if (P>s){ gl=P-s; x=a[P]; t=1; up(1, n-s, 0); } } int main(){ scanf("%i%i",&n, &s); --s; gl=s; x=(1 << 30); t=0; up(1, s+1, 0); gl=n-s; x=(1 << 30); t=1; up(1, n-s, 0); fox(l, n){ scanf("%i", &a[l]); change(l); r[a[l]]=l; } scanf("%i", &q); fox(l, q){ scanf(" %c%i", &ch, &p); --p; if (ch=='E'){ scanf("%i", &z); r.erase(a[p]); i=r.end(); fox(l, z) --i; k=a[p]=i->x+1; change(p); //cout << "*" << k << endl; //continue; v.clear(); for (++i, ++k; i!=r.end(); ++i, ++k){ a[i->y]=k; change(i->y); v.pb(i->y); //cout << "*"; } fox(l, z-1){ //cout << z << ' ' << v[l] << ' '; r.erase(a[v[l]]); r[a[v[l]]]=v[l]; } r[a[p]]=p; } else { if (p==s){ printf("0\n"); } else if (p<s){ t=1; x=a[p]; printf("%i\n", s-p+query(1, s+1, 0)); } else { t=0; x=a[p]; printf("%i\n", p-s+query(1, n-s, 0)); } } } return 0; } // :)

Compilation message (stderr)

cake.cpp: In function 'int query(int, int, int)':
cake.cpp:47:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
cake.cpp: In function 'int main()':
cake.cpp:59:25: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%i%i",&n, &s); --s;
                         ^
cake.cpp:65:27: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%i", &a[l]);
                           ^
cake.cpp:69:20: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%i", &q);
                    ^
cake.cpp:71:32: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf(" %c%i", &ch, &p); --p;
                                ^
cake.cpp:73:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
             scanf("%i", &z);
                            ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...