結果
問題 | No.2338 Range AtCoder Query |
ユーザー | shobonvip |
提出日時 | 2023-06-02 23:45:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,357 bytes |
コンパイル時間 | 2,901 ms |
コンパイル使用メモリ | 218,596 KB |
実行使用メモリ | 151,552 KB |
最終ジャッジ日時 | 2024-06-09 02:15:04 |
合計ジャッジ時間 | 25,851 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
151,552 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | AC | 244 ms
141,568 KB |
testcase_27 | AC | 237 ms
141,568 KB |
testcase_28 | AC | 232 ms
141,568 KB |
testcase_29 | AC | 655 ms
146,432 KB |
testcase_30 | TLE | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; struct t3{int left, right, index;}; bool sec_sort(t3 a, t3 b){return a.right < b.right;} int main(){ int n, m, q; cin >> n >> m >> q; vector<int> prob(n); vector<int> dat(n); vector<int> lftwa(m); vector<int> nowcnt(m); for (int i=0; i<n; i++){ int p; string s; cin >> p >> s; p--; prob[i] = p; if (s == "AC"){ dat[i] = 1; lftwa[i] = nowcnt[p]; }else{ dat[i] = 0; nowcnt[p]++; } } int sep = ceil(sqrt(n)); vector<vector<t3>> mo(sep+1, vector<t3>(0)); t3 f; for(int i=0; i<q; i++){ int l, r; cin >> l >> r; l--; f.left = l; f.right = r; f.index = i; mo[l/sep].push_back(f); } vector<int> ans1(q); // AC vector<int> ans2(q); // WA vector<deque<int>> ac; ac.resize(m); vector<int> lftsum(m); int l = 0, r = 0; int tl, tr; int nowans1 = 0; int nowans2 = 0; for(int i=0; i<sep+1; i++){ sort(mo[i].begin(), mo[i].end(), sec_sort); for(int j=0; j<mo[i].size(); j++){ tl = mo[i][j].left; tr = mo[i][j].right; //右を伸ばす for(int k=r; k<tr; k++){ if (dat[k] == 1){ if (ac[prob[k]].empty()){ nowans1++; nowans2 += lftwa[k] - lftsum[prob[k]]; } ac[prob[k]].push_back(k); } } //右を縮ませる for(int k=r-1; k>=tr; k--){ if (dat[k] == 1){ if ((int)ac[prob[k]].size() == 1){ nowans2 -= lftwa[k] - lftsum[prob[k]]; } ac[prob[k]].pop_back(); if (ac[prob[k]].empty()){ nowans1--; } } } //左を縮ませる for(int k=l; k<tl; k++){ if (dat[k] == 1){ ac[prob[k]].pop_front(); if (!ac[prob[k]].empty()){ nowans2 += lftwa[ac[prob[k]].front()] - lftsum[prob[k]]; }else{ nowans1--; } }else{ lftsum[prob[k]]++; if (!ac[prob[k]].empty()) nowans2--; } } //左を伸ばす for(int k=l-1; k>=tl; k--){ if (dat[k] == 1){ if (!ac[prob[k]].empty()){ nowans2 -= lftwa[ac[prob[k]].front()] - lftsum[prob[k]]; }else{ nowans1++; } ac[prob[k]].push_front(k); }else{ lftsum[prob[k]]--; if (!ac[prob[k]].empty()) nowans2++; } } l = tl; r = tr; ans1[mo[i][j].index] = nowans1; ans2[mo[i][j].index] = nowans2; } } for(int i=0; i<q; i++){ cout << ans1[i] << " " << ans2[i] << "\n"; } }