結果
問題 | No.1226 I hate Robot Arms |
ユーザー | chocorusk |
提出日時 | 2020-09-11 23:28:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 559 ms / 2,000 ms |
コード長 | 3,117 bytes |
コンパイル時間 | 1,543 ms |
コンパイル使用メモリ | 140,796 KB |
実行使用メモリ | 27,976 KB |
最終ジャッジ日時 | 2024-06-10 10:50:57 |
合計ジャッジ時間 | 15,206 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 150 ms
8,340 KB |
testcase_03 | AC | 184 ms
9,140 KB |
testcase_04 | AC | 218 ms
24,956 KB |
testcase_05 | AC | 182 ms
26,108 KB |
testcase_06 | AC | 473 ms
27,220 KB |
testcase_07 | AC | 135 ms
6,944 KB |
testcase_08 | AC | 54 ms
24,920 KB |
testcase_09 | AC | 315 ms
9,316 KB |
testcase_10 | AC | 38 ms
6,944 KB |
testcase_11 | AC | 220 ms
24,584 KB |
testcase_12 | AC | 123 ms
14,480 KB |
testcase_13 | AC | 98 ms
27,656 KB |
testcase_14 | AC | 397 ms
9,280 KB |
testcase_15 | AC | 35 ms
25,412 KB |
testcase_16 | AC | 486 ms
26,144 KB |
testcase_17 | AC | 120 ms
11,384 KB |
testcase_18 | AC | 87 ms
9,676 KB |
testcase_19 | AC | 232 ms
25,160 KB |
testcase_20 | AC | 214 ms
24,784 KB |
testcase_21 | AC | 293 ms
24,172 KB |
testcase_22 | AC | 479 ms
27,976 KB |
testcase_23 | AC | 509 ms
26,252 KB |
testcase_24 | AC | 497 ms
26,380 KB |
testcase_25 | AC | 479 ms
26,512 KB |
testcase_26 | AC | 492 ms
26,376 KB |
testcase_27 | AC | 542 ms
27,900 KB |
testcase_28 | AC | 559 ms
26,380 KB |
testcase_29 | AC | 551 ms
26,448 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #define popcount __builtin_popcount using namespace std; typedef long long ll; typedef pair<int, int> P; template<typename Monoid, typename OperatorMonoid=Monoid> struct LazySegmentTree{ using F=function<Monoid(Monoid, Monoid)>; using G=function<Monoid(Monoid, OperatorMonoid, int)>; using H=function<OperatorMonoid(OperatorMonoid, OperatorMonoid)>; int sz; vector<Monoid> data; vector<OperatorMonoid> lazy; const F f; const G g; const H h; const Monoid e1; const OperatorMonoid e0; LazySegmentTree(int n, const F f, const G g, const H h, const Monoid &e1, const OperatorMonoid &e0): f(f), g(g), h(h), e1(e1), e0(e0){ sz=1; while(sz<n) sz<<=1; data.resize(2*sz-1, e1); lazy.resize(2*sz-1, e0); } void build(vector<Monoid> v){ for(int i=0; i<v.size(); i++) data[i+sz-1]=v[i]; for(int i=sz-2; i>=0; i--) data[i]=f(data[2*i+1], data[2*i+2]); } void eval(int k, int l, int r){ if(lazy[k]!=e0){ data[k]=g(data[k], lazy[k], r-l); if(k<sz-1){ lazy[2*k+1]=h(lazy[2*k+1], lazy[k]); lazy[2*k+2]=h(lazy[2*k+2], lazy[k]); } } lazy[k]=e0; } void update(int a, int b, const OperatorMonoid &x, int k, int l, int r){ eval(k, l, r); if(r<=a || b<=l) return; if(a<=l && r<=b){ lazy[k]=h(lazy[k], x); eval(k, l, r); }else{ update(a, b, x, 2*k+1, l, (l+r)/2); update(a, b, x, 2*k+2, (l+r)/2, r); data[k]=f(data[2*k+1], data[2*k+2]); } } void update(int a, int b, const OperatorMonoid &x){ return update(a, b, x, 0, 0, sz); } Monoid find(int a, int b, int k, int l, int r){ eval(k, l, r); if(b<=l || r<=a) return e1; if(a<=l && r<=b) return data[k]; else return f(find(a, b, 2*k+1, l, (l+r)/2), find(a, b, 2*k+2, (l+r)/2, r)); } Monoid find(int a, int b){ return find(a, b, 0, 0, sz); } Monoid operator[](const int &k){ return find(k, k+1); } }; int main() { int n, q; cin>>n>>q; using C=complex<long double>; auto f=[](C a, C b){ return a+b; }; auto g=[](C a, C x, int len){ return a*x; }; auto h=[](C x, C y){ return x*y; }; vector<C> v(n, C(1.0L, 0.0L)); LazySegmentTree<C> seg(n, f, g, h, C(0.0L, 0.0L), C(1.0L, 0.0L)); seg.build(v); long double d[100010]; fill(d, d+n, 1.0L); long double c[100010]; fill(c, c+n, 0.0L); const long double PI=acos(-1.0L); while(q--){ int t; cin>>t; if(t==0){ int i, x; cin>>i>>x; i--; seg.update(i, n, polar(1.0L, PI/180.0L*((long double)x-c[i]))); c[i]=x; }else if(t==1){ int i, x; cin>>i>>x; i--; seg.update(i, i+1, C((long double)x/d[i], 0.0L)); d[i]=(long double)x; }else{ int i; cin>>i; C ans=seg.find(0, i); printf("%.7Lf %.7Lf\n", ans.real(), ans.imag()); } } return 0; }