#include //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 pii; typedef pair ppii; typedef pair pipi; typedef pair pll; typedef pair ppll; typedef pair plpl; typedef tuple 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=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(a0){ 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 node,lazy; vector flag; public: LST(vector v){ ll sz=v.size(); n=1;while(n1){ 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(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<