結果

問題 No.2338 Range AtCoder Query
ユーザー momoyuumomoyuu
提出日時 2023-06-03 00:05:44
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 3,314 bytes
コンパイル時間 3,273 ms
コンパイル使用メモリ 259,512 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-12-29 01:04:23
合計ジャッジ時間 101,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
19,456 KB
testcase_01 AC 7 ms
37,120 KB
testcase_02 AC 9 ms
19,456 KB
testcase_03 AC 8 ms
26,828 KB
testcase_04 AC 8 ms
19,456 KB
testcase_05 AC 7 ms
25,616 KB
testcase_06 AC 11 ms
36,992 KB
testcase_07 AC 11 ms
26,752 KB
testcase_08 AC 13 ms
19,328 KB
testcase_09 AC 11 ms
26,644 KB
testcase_10 AC 11 ms
19,584 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
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 73 ms
49,280 KB
testcase_27 AC 68 ms
28,032 KB
testcase_28 AC 68 ms
49,408 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 461 ms
26,712 KB
testcase_34 AC 469 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;

const int mx = 2e5+10;
int nnn[mx],now[mx],l[mx],r[mx],ccc[mx],cnc[mx],nxt[mx];
int p[mx];
int n,m,q;
const int B= 700;
string s[mx];
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cin>>n>>m>>q;
    for(int i = 0;i<n;i++){
        cin>>p[i]>>s[i];
    }
    int mx = 2e5;
    const int B = 2;
    vector<vector<int>> is(mx+1);
    for(int i = 0;i<n;i++){
        is[p[i]].push_back(i);
    }
    for(int i = 0;i<=mx;i++){
        int now = 0;
        int ni = -1;
        if(is[i].size()==0) continue;
        for(int j = is[i].size()-1;j>=0;j--){
            if(s[is[i][j]]=="AC"){
                cnc[is[i][j]] = now;
                nxt[is[i][j]] = ni;
                now= 0;
                ni = is[i][j];
            }else{
                now++;
            }
        }
    }
    for(int i = 0;i<q;i++){
        cin>>l[i]>>r[i];
        l[i]--;
    }
    vector<int> idx(q);
    for(int i = 0;i<q;i++) idx[i] = i;
    sort(idx.begin(),idx.end(),[&](int i,int j){
        if(l[i]/B!=l[j]/n) return l[i] < l[j];
        if(l[i]/B%2) return r[i] > r[j];
        return r[i] < r[j];
    });
    int ans = 0;
    int cnt = 0;
    int nl = 0;
    int nr = 1;
    vector<pair<int,int>> aa(q);
    if(s[0]=="AC"){
        ans++;
        nnn[p[0]]++;
        now[p[0]]++;
    }else{
        now[p[0]]++;
    }
    for(int i = 0;i<q;i++){
        int ni = idx[i];
        while(l[ni]<nl){
            nl--;
            if(s[nl]=="AC"){
                cnt -= ccc[p[nl]];
                ccc[p[nl]]=0;
                nnn[p[nl]]++;
                if(nnn[p[nl]]==1) ans++;
                now[p[nl]]++;
            }else{
                if(nnn[p[nl]]){
                    cnt++;
                    ccc[p[nl]]++;
                }
                now[p[nl]]++;
            }
        }
        while(nr<r[ni]){
            if(s[nr]=="AC"){
                if(nnn[p[nr]]==0){
                    ans++;
                    ccc[p[nr]] += now[p[nr]];
                    cnt += ccc[p[nr]];
                }
                nnn[p[nr]]++;
                now[p[nr]]++;
                nr++;
            }else{
                now[p[nr]]++;
                nr++;
            }
        }
        while(nl<l[ni]){
            if(s[nl]=="AC"){
                nnn[p[nl]]--;
                now[p[nl]]--;
                if(nnn[p[nl]]){
                    //int ii = nnn[p[nl]][0];
                    int ni = cnc[nl];
                    cnt += ccc[p[nl]] += ni;
                }else{
                    ans--;
                }
                nl++;
            }else{
                now[p[nl]]--;
                if(nnn[p[nl]]){
                    ccc[p[nl]]--;
                    cnt--;
                }
                nl++;
            }
        }
        while(nr>r[ni]){
            nr--;
            if(s[nr]=="AC"){
            now[p[nr]]--;
                nnn[p[nr]]--;
                if(nnn[p[nr]]==0){
                    cnt -= ccc[p[nr]];
                    ccc[p[nr]] = 0;
                    ans--;
                }
            }else{
                now[p[nr]]--;
            }
        }
        aa[ni] = make_pair(ans,cnt);
    }
    for(int i = 0;i<q;i++) cout<<aa[i].first<<" "<<aa[i].second<<endl;
}
0