Submission #986373

#TimeUsernameProblemLanguageResultExecution timeMemory
986373cig32Modern Machine (JOI23_ho_t5)C++17
0 / 100
1 ms480 KiB
#include "bits/stdc++.h" using namespace std; #define int long long #define double long double const int MAXN = 2e5 + 10; const int MOD = 1e9 + 7; mt19937_64 rng((int)std::chrono::steady_clock::now().time_since_epoch().count()); int rnd(int x, int y) { int u = uniform_int_distribution<int>(x, y)(rng); return u; } int bm(int b, int p) { if(p==0) return 1 % MOD; int r = bm(b, p >> 1); if(p&1) return (((r*r) % MOD) * b) % MOD; return (r*r) % MOD; } int inv(int b) { return bm(b, MOD-2); } int fastlog(int x) { return (x == 0 ? -1 : 64 - __builtin_clzll(x) - 1); } void printcase(int i) { cout << "Case #" << i << ": "; } static void run_with_stack_size(void (*func)(void), size_t stsize) { char *stack, *send; stack = (char *)malloc(stsize); send = stack + stsize - 16; send = (char *)((uintptr_t)send / 16 * 16); asm volatile( "mov %%rsp, (%0)\n" "mov %0, %%rsp\n" : : "r"(send)); func(); asm volatile("mov (%0), %%rsp\n" : : "r"(send)); free(stack); } void solve(int tc) { int n, m, q; cin >> n >> m; char c[n+1]; // blue or red for(int i=1; i<=n; i++) cin >> c[i]; int a[m+1]; for(int i=1; i<=m; i++) cin >> a[i]; cin >> q; int r[n+1], b[n+1]; r[0] = b[0] = 0; for(int i=1; i<=n; i++) { r[i] = r[i-1] + (c[i] == 'R'); b[i] = b[i-1] + (c[i] == 'B'); } // q = 1 while(q--) { int l, r; cin >> l >> r; char upd[n+1]; for(int i=1; i<=n; i++) upd[i] = c[i]; for(int i=l; i<=r; i++) { int pivot = a[i]; int leftR = 0, rightB = 0; for(int j=1; j<=n; j++) { if(j < pivot) leftR += (upd[j] == 'R'); if(j > pivot) rightB += (upd[j] == 'B'); } if(rightB <= leftR) { // goes to the right int cnt = 0; for(int j=pivot-1; j>=1; j--) { cnt += (upd[j] == 'R'); if(cnt == rightB) { for(int k=j; k<=n; k++) upd[k] = 'B'; break; } } } else { int cnt = 0; for(int j=pivot+1; j<=n; j++) { cnt += (upd[j] == 'B'); if(cnt == leftR + 1) { for(int k=j; k>=1; k--) upd[k] = 'R'; break; } } } } int ans = 0; for(int i=1; i<=n; i++) ans += (upd[i] == 'R'); cout << ans << "\n"; } } void uwu() { ios::sync_with_stdio(0); cin.tie(0); int t = 1; //cin >> t; for(int i=1; i<=t; i++) solve(i); } int32_t main() { #ifdef ONLINE_JUDGE uwu(); #endif #ifndef ONLINE_JUDGE run_with_stack_size(uwu, 1024 * 1024 * 1024); // run with a 1 GiB stack #endif } /* g++ C.cpp -std=c++17 -O2 -o C ./C < input.txt */
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...