結果
問題 | No.1226 I hate Robot Arms |
ユーザー | kmjp |
提出日時 | 2020-09-11 22:15:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 654 ms / 2,000 ms |
コード長 | 1,941 bytes |
コンパイル時間 | 2,199 ms |
コンパイル使用メモリ | 209,796 KB |
実行使用メモリ | 119,192 KB |
最終ジャッジ日時 | 2024-06-10 10:19:09 |
合計ジャッジ時間 | 22,167 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 214 ms
118,256 KB |
testcase_01 | AC | 213 ms
118,300 KB |
testcase_02 | AC | 344 ms
118,312 KB |
testcase_03 | AC | 360 ms
118,444 KB |
testcase_04 | AC | 378 ms
118,924 KB |
testcase_05 | AC | 356 ms
119,008 KB |
testcase_06 | AC | 610 ms
118,984 KB |
testcase_07 | AC | 330 ms
118,456 KB |
testcase_08 | AC | 247 ms
118,988 KB |
testcase_09 | AC | 494 ms
118,376 KB |
testcase_10 | AC | 247 ms
118,356 KB |
testcase_11 | AC | 400 ms
118,976 KB |
testcase_12 | AC | 308 ms
118,568 KB |
testcase_13 | AC | 284 ms
119,072 KB |
testcase_14 | AC | 545 ms
118,448 KB |
testcase_15 | AC | 232 ms
118,892 KB |
testcase_16 | AC | 595 ms
118,888 KB |
testcase_17 | AC | 314 ms
118,616 KB |
testcase_18 | AC | 280 ms
118,520 KB |
testcase_19 | AC | 402 ms
119,044 KB |
testcase_20 | AC | 387 ms
118,884 KB |
testcase_21 | AC | 458 ms
118,832 KB |
testcase_22 | AC | 622 ms
119,192 KB |
testcase_23 | AC | 622 ms
119,080 KB |
testcase_24 | AC | 616 ms
119,076 KB |
testcase_25 | AC | 620 ms
118,952 KB |
testcase_26 | AC | 624 ms
118,952 KB |
testcase_27 | AC | 654 ms
119,068 KB |
testcase_28 | AC | 654 ms
119,096 KB |
testcase_29 | AC | 653 ms
119,116 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- template<int NV> class SegTree_1 { public: vector<vector<double>> V; vector<double> comp(vector<double> a,vector<double> b) { vector<double> c(3); c[2]=a[2]+b[2]; c[0]=a[0]+b[0]*cos(a[2])-b[1]*sin(a[2]); c[1]=a[1]+b[0]*sin(a[2])+b[1]*cos(a[2]); return c; } SegTree_1(){ V.resize(NV*2); int i; for(i=NV;i<2*NV;i++) V[i]={1,0,0}; for(i=NV-1;i>=1;i--) { V[i]=comp(V[2*i],V[2*i+1]); } }; vector<double> getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i<y if(r<=x || y<=l) return {0,0,0}; if(x<=l && r<=y) return V[k]; return comp(getval(x,y,l,(l+r)/2,k*2),getval(x,y,(l+r)/2,r,k*2+1)); } void update(int entry, int L,int D) { entry += NV; V[entry][2]=D*2*atan(1)*4/360; V[entry][0]=L*cos(V[entry][2]); V[entry][1]=L*sin(V[entry][2]); while(entry>1) entry>>=1, V[entry]=comp(V[entry*2],V[entry*2+1]); } }; int L[101010]; int D[101010]; SegTree_1<1<<20> st; int N,Q; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>Q; FOR(i,N) L[i]=1; while(Q--) { cin>>i; if(i==0||i==1) { cin>>x>>y; x--; if(i==0) D[x]=y; if(i==1) L[x]=y; st.update(x,L[x],D[x]); } else { cin>>x; auto a=st.getval(0,x); _P("%.12lf %12lf\n",a[0],a[1]); } } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }