cogs luogu [NOIP2014]生活大爆炸版石头剪刀布

1803. [NOIP2014]生活大爆炸版石头剪刀布

★   输入文件: rps.in   输出文件: rps.out   简单对比
时间限制:1 s   内存限制:128 MB

 

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<algorithm>
 4 #include<cmath>
 5 
 6 using namespace std;
 7 const int N=210;//a: 0 ping  1 shu   2 ying
 8 const int c[5][5]={ 0,1,2,2,1,
 9                     2,0,1,2,1,
10                     1,2,0,1,2,
11                     1,1,2,0,2,
12                     2,2,1,1,0 };
13 
14 int a[N];
15 int b[N];
16 int Answera;
17 int Answerb;
18 
19 inline int read()
20 {
21     int x=0,f=1;
22     char c=getchar();
23     while(c<'0'||c>'9') {if(c=='-')f=-1; c=getchar();}
24     while(c>='0'&&c<='9')x=x*10+c-'0',c=getchar();
25     return x*f;
26 }
27 
28 int main()
29 {
30     freopen("rps.in","r",stdin);
31     freopen("rps.out","w",stdout);
32     
33     int n=read();
34     int la=read();
35     int lb=read();
36     for(int i=1;i<la;i++)
37         a[i]=read();
38     a[0]=read();
39     for(int i=1;i<lb;i++)
40         b[i]=read();
41     b[0]=read();
42     
43     for(int i=1;i<=n;i++)
44     {
45         if(c[a[i%la]][b[i%lb]]==2)Answera++;
46         if(c[a[i%la]][b[i%lb]]==1)Answerb++;
47     }
48     
49     printf("%d %d",Answera,Answerb);
50     return 0;
51 }

 

转载于:https://www.cnblogs.com/lyqlyq/p/6904227.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值