Submission #516565

#TimeUsernameProblemLanguageResultExecution timeMemory
516565leinad2Monochrome Points (JOI20_monochrome)C++17
0 / 100
1 ms460 KiB
#include<bits/stdc++.h> using namespace std; int n, i, j, k, a, b, ans; char S[400010]; vector<int>A, B; int seg[1600010]; void init(){for(int i=0;i<8*n;i++)seg[i]=0;} void update(int id, int s, int e, int x, int v) { if(e<x||x<s)return; if(s==e) { seg[id]+=v; return; } int m=s+e>>1; update(id*2, s, m, x, v);update(id*2+1, m+1, e, x, v); seg[id]=seg[id*2]+seg[id*2+1]; } int get(int id, int s, int e, int l, int r) { if(e<l||r<s)return 0; if(l<=s&&e<=r)return seg[id]; int m=s+e>>1; return get(id*2, s, m, l, r)+get(id*2+1, m+1, e, l, r); } main() { scanf("%d", &n); scanf("%s", &S); for(i=0;i<2*n;i++) { if(S[i]=='B')A.push_back(i+1); else B.push_back(i+1); } int prev=0; int flag=0; for(i=0;i<n;i++) { init(); vector<pair<int, int> >V; for(j=i;j<n;j++)V.push_back({A[j-i], B[j]}); for(j=0;j<i;j++)V.push_back({A[j+n-i], B[j]}); for(auto &p:V)if(p.first>p.second)swap(p.first, p.second); sort(V.begin(), V.end()); int res=0; for(auto p:V) { int a=p.second; update(1, 1, 2*n, a, 1); res+=get(1, 1, 2*n, p.first, a-1); } if(flag&&prev<=res)assert(0); if(prev>res)flag=1; prev=res; ans=max(ans, res); } cout<<ans; }

Compilation message (stderr)

monochrome.cpp: In function 'void update(int, int, int, int, int)':
monochrome.cpp:16:12: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   16 |     int m=s+e>>1;
      |           ~^~
monochrome.cpp: In function 'int get(int, int, int, int, int)':
monochrome.cpp:24:12: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   24 |     int m=s+e>>1;
      |           ~^~
monochrome.cpp: At global scope:
monochrome.cpp:27:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   27 | main()
      | ^~~~
monochrome.cpp: In function 'int main()':
monochrome.cpp:30:13: warning: format '%s' expects argument of type 'char*', but argument 2 has type 'char (*)[400010]' [-Wformat=]
   30 |     scanf("%s", &S);
      |            ~^   ~~
      |             |   |
      |             |   char (*)[400010]
      |             char*
monochrome.cpp:29:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   29 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~
monochrome.cpp:30:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   30 |     scanf("%s", &S);
      |     ~~~~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...