結果

問題 No.1226 I hate Robot Arms
ユーザー 沙耶花沙耶花
提出日時 2020-09-11 22:33:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,370 bytes
コンパイル時間 1,928 ms
コンパイル使用メモリ 205,532 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-10 10:25:15
合計ジャッジ時間 9,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/segtree>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 10000000000000
double eps = 1e-9;
struct Data{
	double r=0.0,theta=0.0;
	double stheta = 0.0;
};

Data op(Data a,Data b){
	if(abs(b.r)<eps)return a;
	if(abs(a.r)<eps)return b;
	double x = a.r * cos(a.theta) + b.r * cos(b.theta+a.stheta);
	double y = a.r * sin(a.theta) + b.r * sin(b.theta+a.stheta);
	Data ret;
	ret.r = hypot(x,y);
	ret.theta = atan2(y,x);
	ret.stheta = a.stheta + b.stheta;
	return ret;
}

Data e(){
	return Data();
}

int main(){
	
	int N,Q;
	cin>>N>>Q;
	Data temp = {1.0,0.0};
	vector<Data> T(N+1,temp);
	T[0].r = 0.0;
	segtree<Data,op,e> seg(T);
	
	rep(_,Q){
		int t;
		cin>>t;
		if(t==0){
			int i,x;
			cin>>i>>x;
			Data D = seg.get(i);
			D.theta = (acos(-1.0)/180.0)*(double)x;
			D.stheta = D.theta;
		//	cout<<D.theta<<endl;
			seg.set(i,D);
		}
		else if(t==1){
			int i,x;
			cin>>i>>x;
			Data D = seg.get(i);
			D.r = (double)x;
			seg.set(i,D);
		}
		else{
			int i;
			cin>>i;
			Data D = seg.prod(0,i+1);
			//cout<<D.theta<<endl;
			double x = D.r * cos(D.theta);
			double y = D.r * sin(D.theta);
			cout<<fixed<<setprecision(10)<<x<<' '<<y<<endl;
		}
	}
			
    return 0;
}
0