結果
| 問題 |
No.945 YKC饅頭
|
| コンテスト | |
| ユーザー |
ttttan2
|
| 提出日時 | 2019-12-08 00:10:57 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 489 ms / 2,000 ms |
| コード長 | 3,109 bytes |
| コンパイル時間 | 2,444 ms |
| コンパイル使用メモリ | 170,100 KB |
| 実行使用メモリ | 16,428 KB |
| 最終ジャッジ日時 | 2024-12-26 18:40:11 |
| 合計ジャッジ時間 | 13,697 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 74 |
ソースコード
#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;
}
ttttan2