結果

問題 No.1226 I hate Robot Arms
ユーザー 👑 emthrmemthrm
提出日時 2020-09-14 17:41:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 2,972 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 207,808 KB
実行使用メモリ 10,684 KB
最終ジャッジ日時 2024-06-22 00:53:16
合計ジャッジ時間 15,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 65 ms
6,944 KB
testcase_03 AC 75 ms
6,940 KB
testcase_04 AC 87 ms
10,412 KB
testcase_05 AC 83 ms
10,460 KB
testcase_06 AC 193 ms
10,424 KB
testcase_07 AC 59 ms
6,940 KB
testcase_08 AC 32 ms
10,316 KB
testcase_09 AC 135 ms
6,940 KB
testcase_10 AC 17 ms
6,944 KB
testcase_11 AC 96 ms
10,320 KB
testcase_12 AC 52 ms
7,104 KB
testcase_13 AC 49 ms
10,468 KB
testcase_14 AC 163 ms
6,940 KB
testcase_15 AC 25 ms
10,516 KB
testcase_16 AC 185 ms
10,424 KB
testcase_17 AC 52 ms
6,940 KB
testcase_18 AC 37 ms
6,940 KB
testcase_19 AC 101 ms
10,512 KB
testcase_20 AC 91 ms
10,180 KB
testcase_21 AC 119 ms
10,356 KB
testcase_22 AC 192 ms
10,512 KB
testcase_23 AC 196 ms
10,528 KB
testcase_24 AC 192 ms
10,684 KB
testcase_25 AC 188 ms
10,536 KB
testcase_26 AC 187 ms
10,576 KB
testcase_27 AC 230 ms
10,404 KB
testcase_28 AC 241 ms
10,516 KB
testcase_29 AC 233 ms
10,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr ll LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << fixed << setprecision(20);
  }
} iosetup;

template <typename Monoid, typename Fn>
struct SegmentTree {
  SegmentTree(int sz, Fn fn, const Monoid UNITY) : fn(fn), UNITY(UNITY) {
    init(sz);
    dat.assign(n << 1, UNITY);
  }

  SegmentTree(const std::vector<Monoid> &a, Fn fn, const Monoid UNITY) : fn(fn), UNITY(UNITY) {
    int a_sz = a.size();
    init(a_sz);
    dat.resize(n << 1);
    for (int i = 0; i < a_sz; ++i) dat[i + n] = a[i];
    for (int i = n - 1; i > 0; --i) dat[i] = fn(dat[i << 1], dat[(i << 1) + 1]);
  }

  void update(int node, Monoid val) {
    node += n;
    dat[node] = val;
    while (node >>= 1) dat[node] = fn(dat[node << 1], dat[(node << 1) + 1]);
  }

  Monoid query(int left, int right) const {
    Monoid l_res = UNITY, r_res = UNITY;
    for (left += n, right += n; left < right; left >>= 1, right >>= 1) {
      if (left & 1) l_res = fn(l_res, dat[left++]);
      if (right & 1) r_res = fn(dat[--right], r_res);
    }
    return fn(l_res, r_res);
  }

  Monoid operator[](const int idx) const { return dat[idx + n]; }

private:
  int n = 1;
  Fn fn;
  const Monoid UNITY;
  std::vector<Monoid> dat;

  void init(int sz) { while (n < sz) n <<= 1; }
};

int main() {
  struct Node {
    double x, y, angle;
  };
  auto fn = [](Node a, Node b) {
    double x = a.x + cos(a.angle) * b.x - sin(a.angle) * b.y;
    double y = a.y + sin(a.angle) * b.x + cos(a.angle) * b.y;
    return Node{x, y, a.angle + b.angle};
  };

  int n, q; cin >> n >> q;
  vector angle(n, 0), len(n, 1);
  SegmentTree seg(n, fn, Node{0, 0, 0});
  REP(i, n) seg.update(i, Node{1, 0, 0});
  while (q--) {
    int query, i; cin >> query >> i; --i;
    if (query == 0) {
      int x; cin >> x;
      angle[i] = x;
      seg.update(i, Node{len[i] * cos(x * M_PI / 180), len[i] * sin(x * M_PI / 180), x * M_PI / 180});
    } else if (query == 1) {
      int x; cin >> x;
      len[i] = x;
      seg.update(i, Node{x * cos(angle[i] * M_PI / 180), x * sin(angle[i] * M_PI / 180), angle[i] * M_PI / 180});
    } else if (query == 2) {
      Node ans = seg.query(0, i + 1);
      cout << ans.x << ' ' << ans.y << '\n';
    }
  }
  return 0;
}
0