結果

問題 No.945 YKC饅頭
ユーザー ttttan2ttttan2
提出日時 2019-12-08 00:10:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 3,109 bytes
コンパイル時間 1,692 ms
コンパイル使用メモリ 170,488 KB
実行使用メモリ 16,424 KB
最終ジャッジ日時 2024-06-08 02:49:49
合計ジャッジ時間 10,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 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 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 20 ms
5,504 KB
testcase_32 AC 33 ms
8,192 KB
testcase_33 AC 93 ms
12,456 KB
testcase_34 AC 169 ms
9,864 KB
testcase_35 AC 284 ms
15,524 KB
testcase_36 AC 154 ms
7,680 KB
testcase_37 AC 147 ms
7,664 KB
testcase_38 AC 148 ms
8,316 KB
testcase_39 AC 56 ms
7,936 KB
testcase_40 AC 68 ms
12,544 KB
testcase_41 AC 33 ms
8,064 KB
testcase_42 AC 232 ms
11,272 KB
testcase_43 AC 130 ms
7,168 KB
testcase_44 AC 222 ms
14,504 KB
testcase_45 AC 248 ms
12,040 KB
testcase_46 AC 21 ms
7,808 KB
testcase_47 AC 160 ms
9,864 KB
testcase_48 AC 29 ms
5,376 KB
testcase_49 AC 79 ms
8,200 KB
testcase_50 AC 258 ms
12,036 KB
testcase_51 AC 348 ms
16,424 KB
testcase_52 AC 342 ms
16,296 KB
testcase_53 AC 337 ms
16,300 KB
testcase_54 AC 349 ms
16,296 KB
testcase_55 AC 356 ms
16,424 KB
testcase_56 AC 55 ms
12,928 KB
testcase_57 AC 53 ms
13,056 KB
testcase_58 AC 156 ms
14,756 KB
testcase_59 AC 184 ms
15,528 KB
testcase_60 AC 99 ms
13,056 KB
testcase_61 AC 166 ms
14,892 KB
testcase_62 AC 159 ms
14,756 KB
testcase_63 AC 54 ms
12,928 KB
testcase_64 AC 104 ms
13,056 KB
testcase_65 AC 90 ms
12,928 KB
testcase_66 AC 90 ms
12,928 KB
testcase_67 AC 135 ms
13,864 KB
testcase_68 AC 103 ms
12,968 KB
testcase_69 AC 68 ms
12,928 KB
testcase_70 AC 73 ms
12,928 KB
testcase_71 AC 74 ms
12,928 KB
testcase_72 AC 117 ms
13,352 KB
testcase_73 AC 180 ms
15,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<pii,int> ppii;
typedef pair<int,pii> pipi;
typedef pair<ll,ll> pll;
typedef pair<pll,ll> ppll;
typedef pair<ll,pll> plpl;
typedef tuple<ll,ll,ll> tl;
ll mod=1000000007;
ll mod2=998244353;
ll mod3=1000003;
ll mod4=998244853;
ll inf=1000000000;
double pi=2*acos(0);
#define rep(i,m,n) for(int i=m;i<n;i++)
#define rrep(i,n,m) for(int i=n;i>=m;i--)
int dh[4]={1,-1,0,0};
int dw[4]={0,0,1,-1};
int ddh[8]={-1,-1,-1,0,0,1,1,1};
int ddw[8]={-1,0,1,-1,1,-1,0,1};
ll lmax(ll a,ll b){
    if(a<b)return b;
    else return a;
}
ll lmin(ll a,ll b){
    if(a<b)return a;
    else return b;
}
ll gcd(ll a,ll b){
    if(a<b)swap(a,b);
    if(b==0)return a;
    if(a%b==0)return b;
    return gcd(b,a%b);
}
ll Pow(ll n,ll k){
    ll ret=1;
    ll now=n;
    while(k>0){
        if(k&1)ret*=now;
        now*=now;
        k/=2;
    }
    return ret;
}
ll beki(ll n,ll k,ll md){
  ll ret=1;
  ll now=n;
  while(k>0){
    if(k%2==1){
      ret*=now;
      ret%=md;
    }
    now*=now;
    now%=md;
    k/=2;
  }
  return ret;
}
ll gyaku(ll n,ll md){
  return beki(n,md-2,md);
}
struct LST{
private:
    int n;
    vector<ll> node,lazy;
    vector<bool> flag;
public:
    LST(vector<ll> v){
        ll sz=v.size();
        n=1;while(n<sz)n*=2;
        node.resize(2*n-1);
        lazy.resize(2*n-1,inf);
        flag.resize(2*n-1,false);
        rep(i,0,sz)node[i+n-1]=v[i];
        rrep(i,n-2,0)node[i]=min(node[i*2+1],node[i*2+2]);
    }
    void eval(ll k,ll l,ll r){
        if(flag[k]){
            node[k]=lazy[k];
            if(r-l>1){
                lazy[2*k+1]=lazy[k];
                lazy[2*k+2]=lazy[k];
                flag[2*k+1]=flag[2*k+2]=true;
            }
            flag[k]=false;
        }
    }
    void update(ll a,ll b,ll x,ll k=0,ll l=0,ll r=-1){
        if(r<0)r=n;
        eval(k,l,r);
        if(b<=l||r<=a)return;
        if(a<=l&&r<=b){
            lazy[k]=x;
            flag[k]=true;
            eval(k,l,r);
        }
        else{
            update(a,b,x,2*k+1,l,(l+r)/2);
            update(a,b,x,2*k+2,(l+r)/2,r);
            node[k]=min(node[2*k+1],node[2*k+2]);
        }
    }
    ll find(ll a,ll b,ll k=0,ll l=0,ll r=-1){
        if(r<0)r=n;
        eval(k,l,r);
        if(b<=l||a>=r)return inf;
        if(a<=l&&b>=r)return node[k];
        ll m1=find(a,b,2*k+1,l,(l+r)/2);
        ll m2=find(a,b,2*k+2,(l+r)/2,r);
        return min(m1,m2);
    }
};


int main(){
    ios::sync_with_stdio(false);cin.tie(0);
    int n,m;cin>>n>>m;
    LST seg(vector<ll>(n+1,inf));
    ll l[m],r[m];
    char tt[m];
    ll t[m];
    rep(i,0,m){
        cin>>l[i]>>r[i]>>tt[i];
        if(tt[i]=='Y')t[i]=1;
        else if(tt[i]=='K')t[i]=2;
        else t[i]=3;
    }
    rrep(i,m-1,0){
        seg.update(l[i],r[i]+1,t[i]);
    }
    ll cnt[3];
    fill(cnt,cnt+3,0);
    rep(i,1,n+1){
        ll e=seg.find(i,i+1);
        if(e<=3)cnt[e-1]++;
    }
    cout<<cnt[0]<<" "<<cnt[1]<<" "<<cnt[2]<<endl;
}
0