记录编号 351781 评测结果 AAAAAAAAAA
题目名称 [NOIP 2014]生活大爆炸版石头剪刀布 最终得分 100
用户昵称 Gravatar天涯海角还有她 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2016-11-16 19:03:46 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int a[205], b[205];
int judge(int a,int b) {
	if(a==0) {
		if(b==1 || b==4) return -1;
		else if(b==2 || b==3) return 1;
	} else if(a==1) {
		if(b==2 || b==4) return -1;
		else if(b==0 || b==3) return 1;
	} else if(a==2) {
		if(b==0 || b==3) return -1;
		else if(b==1 || b==4) return 1;
	} else if(a==3) {
		if(b==0 || b==1) return -1;
		else if(b==2 || b==4) return 1;
	} else if(a==4) {
		if(b==2 || b==3) return -1;
		else if(b==0 || b==1) return 1;
	}
	return 0;
}
int main() {
	freopen("rps.in","r",stdin);
	freopen("rps.out","w",stdout);
	int n,na,nb,ay=0,by=0;
	scanf("%d%d%d",&n,&na,&nb);
	for(int i=0; i<na; i++)
		scanf("%d",&a[i]);
	for(int i=0; i<nb; i++)
		scanf("%d",&b[i]);
	for(int i=0; i<n; i++) {
		int tem=judge(a[i%na],b[i%nb]);
		//printf("%d ",tem);
		if(tem==1) ay++;
		 if(tem==-1) by++;
	}
	printf("%d %d\n",ay,by);
}