結果

問題 No.1226 I hate Robot Arms
ユーザー beetbeet
提出日時 2020-09-11 22:46:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 3,155 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 209,220 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-06-10 10:31:15
合計ジャッジ時間 11,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 59 ms
6,944 KB
testcase_03 AC 72 ms
6,944 KB
testcase_04 AC 76 ms
14,308 KB
testcase_05 AC 71 ms
14,668 KB
testcase_06 AC 171 ms
14,560 KB
testcase_07 AC 60 ms
6,944 KB
testcase_08 AC 22 ms
14,196 KB
testcase_09 AC 137 ms
6,940 KB
testcase_10 AC 16 ms
6,940 KB
testcase_11 AC 86 ms
14,160 KB
testcase_12 AC 46 ms
9,020 KB
testcase_13 AC 35 ms
14,804 KB
testcase_14 AC 156 ms
6,944 KB
testcase_15 AC 15 ms
14,592 KB
testcase_16 AC 175 ms
14,820 KB
testcase_17 AC 49 ms
6,940 KB
testcase_18 AC 34 ms
6,944 KB
testcase_19 AC 93 ms
14,464 KB
testcase_20 AC 84 ms
14,084 KB
testcase_21 AC 106 ms
13,940 KB
testcase_22 AC 189 ms
15,000 KB
testcase_23 AC 185 ms
15,080 KB
testcase_24 AC 184 ms
14,836 KB
testcase_25 AC 174 ms
14,976 KB
testcase_26 AC 182 ms
14,884 KB
testcase_27 AC 206 ms
15,044 KB
testcase_28 AC 210 ms
14,840 KB
testcase_29 AC 207 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using Int = long long;
const char newl = '\n';

template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);}
template<typename T=int>
vector<T> read(size_t n){
  vector<T> ts(n);
  for(size_t i=0;i<n;i++) cin>>ts[i];
  return ts;
}


template <typename T>
struct SegmentTree{
  using F = function<T(T,T)>;
  int n;
  F f;
  T ti;
  vector<T> dat;

  SegmentTree(){}
  SegmentTree(F f,T ti):f(f),ti(ti){}

  void init(int n_){
    n=1;
    while(n<n_) n<<=1;
    dat.assign(n<<1,ti);
  }

  void build(const vector<T> &v){
    int n_=v.size();
    init(n_);
    for(int i=0;i<n_;i++) dat[n+i]=v[i];
    for(int i=n-1;i;i--)
      dat[i]=f(dat[(i<<1)|0],dat[(i<<1)|1]);
  }

  void set_val(int k,T x){
    dat[k+=n]=x;
    while(k>>=1)
      dat[k]=f(dat[(k<<1)|0],dat[(k<<1)|1]);
  }

  T query(int a,int b){
    if(a>=b) return ti;
    T vl=ti,vr=ti;
    for(int l=a+n,r=b+n;l<r;l>>=1,r>>=1) {
      if(l&1) vl=f(vl,dat[l++]);
      if(r&1) vr=f(dat[--r],vr);
    }
    return f(vl,vr);
  }

  template<typename C>
  int find(int st,C &check,T &acc,int k,int l,int r){
    if(l+1==r){
      acc=f(acc,dat[k]);
      return check(acc)?k-n:-1;
    }
    int m=(l+r)>>1;
    if(m<=st) return find(st,check,acc,(k<<1)|1,m,r);
    if(st<=l&&!check(f(acc,dat[k]))){
      acc=f(acc,dat[k]);
      return -1;
    }
    int vl=find(st,check,acc,(k<<1)|0,l,m);
    if(~vl) return vl;
    return find(st,check,acc,(k<<1)|1,m,r);
  }

  template<typename C>
  int find(int st,C &check){
    T acc=ti;
    return find(st,check,acc,1,0,n);
  }
};


struct Precision{
  Precision(){
    cout<<fixed<<setprecision(12);
  }
}precision_beet;

//INSERT ABOVE HERE
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  using D = double;
  struct T{
    D x,y,theta,sum;
    T(D x,D y,D theta,D sum):x(x),y(y),theta(theta),sum(sum){}
  };

  T ti(0,0,-1,0);
  auto f=[&](T a,T b){
    if(a.theta<0) return b;
    D th=a.sum+b.theta;
    D nx=a.x+(cos(th)*b.x-sin(th)*b.y);
    D ny=a.y+(sin(th)*b.x+cos(th)*b.y);
    return T(nx,ny,a.theta,a.sum+b.theta+b.sum);
  };
  SegmentTree<T> seg(f,ti);

  int n,q;
  cin>>n>>q;

  vector<T> vt(n,T(1,0,0,0));
  seg.build(vt);
  const D pi = asin(1) * 2;

  auto print=[&](T res){
    // cout<<":"<<res.x<<' '<<res.y<<' '<<res.theta<<endl;
    cout<<cos(res.theta)*res.x-sin(res.theta)*res.y<<' ';
    cout<<sin(res.theta)*res.x+cos(res.theta)*res.y<<newl;
  };

  for(int j=0;j<q;j++){
    int t;
    cin>>t;
    if(t==0){
      int i,x;
      cin>>i>>x;
      i--;
      vt[i].theta=x*pi/180.0;
      seg.set_val(i,vt[i]);
    }
    if(t==1){
      int i,x;
      cin>>i>>x;
      i--;
      D len=hypot(vt[i].x,vt[i].y);
      vt[i].x*=x/len;
      vt[i].y*=x/len;
      seg.set_val(i,vt[i]);
    }
    if(t==2){
      int i;
      cin>>i;
      print(seg.query(0,i));
    }
  }
  // print(f(vt[0],vt[1]));
  // print(vt[2]);
  // cout<<f(vt[1],vt[2]).theta<<endl;

  // print(f(vt[0],f(vt[1],vt[2])));
  return 0;
}
0