結果

問題 No.1226 I hate Robot Arms
ユーザー tailstails
提出日時 2020-09-11 23:33:16
言語 cLay
(20240714-1)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 2,888 ms
コンパイル使用メモリ 180,308 KB
実行使用メモリ 24,192 KB
最終ジャッジ日時 2024-07-05 13:59:12
合計ジャッジ時間 11,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 21 ms
6,912 KB
testcase_03 AC 26 ms
9,344 KB
testcase_04 AC 32 ms
23,168 KB
testcase_05 AC 29 ms
22,912 KB
testcase_06 AC 68 ms
24,064 KB
testcase_07 AC 19 ms
6,656 KB
testcase_08 AC 14 ms
22,272 KB
testcase_09 AC 43 ms
10,112 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 36 ms
23,168 KB
testcase_12 AC 19 ms
13,568 KB
testcase_13 AC 18 ms
22,400 KB
testcase_14 AC 53 ms
10,112 KB
testcase_15 AC 11 ms
22,144 KB
testcase_16 AC 63 ms
24,064 KB
testcase_17 AC 18 ms
8,960 KB
testcase_18 AC 13 ms
8,704 KB
testcase_19 AC 36 ms
23,168 KB
testcase_20 AC 33 ms
23,168 KB
testcase_21 AC 44 ms
23,552 KB
testcase_22 AC 71 ms
24,064 KB
testcase_23 AC 67 ms
24,064 KB
testcase_24 AC 70 ms
24,192 KB
testcase_25 AC 73 ms
24,064 KB
testcase_26 AC 72 ms
24,064 KB
testcase_27 AC 80 ms
24,192 KB
testcase_28 AC 80 ms
24,192 KB
testcase_29 AC 78 ms
24,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct M {
	double m[3][3];
	M operator=(int){
		m[0][0]=1; m[0][1]=0; m[0][2]=1;
		m[1][0]=0; m[1][1]=1; m[1][2]=0;
		m[2][0]=0; m[2][1]=0; m[2][2]=1;
		return *this;
	}
};

M operator*(M m1,M m2){
	M m3;
	rep(i,3)rep(j,3){m3.m[i][j]=0;rep(k,3)m3.m[i][j]+=m1.m[i][k]*m2.m[k][j];}
	return m3;
}

segtree_Point_Prod<M>t;
ll n,q,y,i,x;

{
	rd(n,q);
	t.walloc(n+1,1);
	{
		M m=t[0];
		m.m[0][2]=0;
		t.change(0,m);
	}
	rep(q){
		rd(y,i);
		if(y==0){
			rd(x);
			double s=PI*x/180;
			M m=t[i-1];
			m.m[0][0]=cos(s); m.m[0][1]=-sin(s);
			m.m[1][0]=sin(s); m.m[1][1]=cos(s);
			t.change(i-1,m);
		}
		if(y==1){
			rd(x);
			M m=t[i];
			m.m[0][2]=x;
			t.change(i,m);
		}
		if(y==2){
			M m=t.getProd(0,i+1);
			wt(m.m[0][2],m.m[1][2]);
		}
	}
}
0