1. 程式人生 > >【CodeForces】426Div2 A The Useless Toy

【CodeForces】426Div2 A The Useless Toy

連結:http://codeforces.com/contest/834/problem/A

Solution:
很簡單的整除判斷
因為太久沒有寫過程式碼怕出問題,寫得非常累贅(暴力)

#include<stdio.h>

int ch(char a)
{
	if (a=='^') return 1;
	if (a=='>') return 2;
	if (a=='v') return 3;
	if (a=='<') return 4;
}

 int main()
 {
 	char a,b;
 	int n,r1,r2,i,j,tms;
 	bool cw,ccw;
 	scanf("%c %c",&a,&b);
 	scanf("%d",&n);
 	r1=ch(a);r2=ch(b);
 	i=r1,j=r2;
 	tms=0;
 	while (i!=j)
 	{
 		tms++;
 		if (i++==4) i=1;
 	}
 	cw=(tms<=n) && (((n-tms)&3)==0);
 	i=r1,j=r2;
 	tms=0;
 	while (i!=j)
 	{
 		tms++;
 		if (i--==1) i=4;
 	}
 	ccw=(tms<=n) && (((n-tms)&3)==0);
 	if (cw^ccw) puts(cw?"cw":"ccw")	;
 	else puts("undefined");
 }