ARC117 C - Tricolor Pyramid(思维+杨辉三角结论)

https://atcoder.jp/contests/arc117/tasks/arc117_c


思路:

讲真..很结论。

再结合官方题解。也就是说通过组合数就可以知道最底下的数对顶端的数的贡献。

比如绿色0,蓝色1,红色2.

顶端的答案就是 0+1*4+6*0+4*0+1*2=6  6mod3=0;

所以是绿色。

然后%3的组合数用lucas

#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
#include<cmath>
#include<map>
#include<set>
#include<cstdio>
#include<algorithm>
#define debug(a) cout<<#a<<"="<<a<<endl;
using namespace std;
const int maxn=4e5+1000;
typedef long long LL;
const LL mod=3;
inline LL read(){LL x=0,f=1;char ch=getchar();	while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}while (isdigit(ch)){x=x*10+ch-48;ch=getchar();}
return x*f;}
map<char,LL>map1;
LL fac[maxn];
LL ksm(LL a,LL k){
   LL res=1;
   while(k>0){
      if(k&1) res=res*a%mod;
      k>>=1;
      a=a*a%mod;
   }return res%mod;
}
LL C(LL n,LL m){
   if(m>n) return 0;
   return (fac[n]*ksm(fac[m],mod-2)%mod*ksm(fac[n-m],mod-2)%mod)%mod;
}
LL lucas(LL n,LL m){
    if(!m) return 1;
    return C(n%mod,m%mod)*lucas(n/mod,m/mod)%mod;
}
int main(void){
   cin.tie(0);std::ios::sync_with_stdio(false);
   fac[0]=1;
   for(LL i=1;i<=3;i++) fac[i]=fac[i-1]*i%mod;
   map1['B']=0;map1['W']=1;map1['R']=2;
   LL n;cin>>n;
   LL ans=0;
   for(LL i=0;i<n;i++){
      char op;cin>>op;
      LL d=map1[op];
      ans=(ans+d*lucas(n-1,i))%mod;
   }
   if(n%2==0) ans=(3-ans)%3;///ans*=(-1)^(n-1)
   if(ans==0){
      cout<<"B"<<"\n";
   }
   else if(ans==1){
      cout<<"W"<<"\n";
   }
   else if(ans==2){
      cout<<"R"<<"\n";
   }
   return 0;
}

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值