Submission #516572

#TimeUsernameProblemLanguageResultExecution timeMemory
516572leinad2Monochrome Points (JOI20_monochrome)C++17
35 / 100
2071 ms12320 KiB
#include<bits/stdc++.h> using namespace std; int n, i, j, k, a, b; long long ans=0; 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); } long long f(int i) { init(); vector<pair<int, int> >V; for(int j=i;j<n;j++)V.push_back({A[j-i], B[j]}); for(int 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()); long long 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); } ans=max(ans, res); return res; } 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); } if(n<200)for(i=0;i<n;i++)f(i); else { int a=0, b=n-1; while(a+3<=b) { int m1=(a+a+b)/3, m2=(a+b+b)/3; if(f(m1)>f(m2))b=m2; else a=m1; } for(i=a;i<=b;i++)f(i); for(i=0;i<100;i++)f(i); for(i=n-100;i<n;i++)f(i); } cout<<ans; }

Compilation message (stderr)

monochrome.cpp: In function 'void update(int, int, int, int, int)':
monochrome.cpp:17:12: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   17 |     int m=s+e>>1;
      |           ~^~
monochrome.cpp: In function 'int get(int, int, int, int, int)':
monochrome.cpp:25:12: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   25 |     int m=s+e>>1;
      |           ~^~
monochrome.cpp: At global scope:
monochrome.cpp:46:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   46 | main()
      | ^~~~
monochrome.cpp: In function 'int main()':
monochrome.cpp:49:13: warning: format '%s' expects argument of type 'char*', but argument 2 has type 'char (*)[400010]' [-Wformat=]
   49 |     scanf("%s", &S);
      |            ~^   ~~
      |             |   |
      |             |   char (*)[400010]
      |             char*
monochrome.cpp:48:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   48 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~
monochrome.cpp:49:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   49 |     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...