結果

問題 No.1226 I hate Robot Arms
ユーザー ooaiuooaiu
提出日時 2024-12-13 14:35:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 1,492 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 259,648 KB
実行使用メモリ 11,712 KB
最終ジャッジ日時 2024-12-13 14:35:46
合計ジャッジ時間 16,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 61 ms
6,816 KB
testcase_03 AC 69 ms
6,816 KB
testcase_04 AC 77 ms
11,200 KB
testcase_05 AC 70 ms
11,512 KB
testcase_06 AC 173 ms
11,444 KB
testcase_07 AC 54 ms
6,820 KB
testcase_08 AC 22 ms
11,172 KB
testcase_09 AC 125 ms
6,816 KB
testcase_10 AC 15 ms
6,820 KB
testcase_11 AC 89 ms
11,044 KB
testcase_12 AC 48 ms
7,192 KB
testcase_13 AC 39 ms
11,564 KB
testcase_14 AC 149 ms
6,820 KB
testcase_15 AC 16 ms
11,296 KB
testcase_16 AC 175 ms
11,532 KB
testcase_17 AC 48 ms
6,816 KB
testcase_18 AC 35 ms
6,820 KB
testcase_19 AC 90 ms
11,136 KB
testcase_20 AC 83 ms
10,932 KB
testcase_21 AC 111 ms
10,804 KB
testcase_22 AC 186 ms
11,652 KB
testcase_23 AC 176 ms
11,664 KB
testcase_24 AC 174 ms
11,556 KB
testcase_25 AC 175 ms
11,712 KB
testcase_26 AC 178 ms
11,592 KB
testcase_27 AC 215 ms
11,612 KB
testcase_28 AC 228 ms
11,672 KB
testcase_29 AC 219 ms
11,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

using S = complex<double>;
S op(S a, S b) {
    return a + b;
}
S e() { return S{0, 0}; }
using F = S;
F id() { return F{1, 0}; }
F composition(F f, F g) {
    return f * g;
}
S mapping(F f, S x) {
    return x * f;
}
#include <atcoder/lazysegtree>
#include <atcoder/modint>
using deg = atcoder::static_modint<360>;

void solve() {
    int N, Q;
    cin >> N >> Q;
    vector<int> D(N, 1);
    vector<deg> T(N);
    atcoder::lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<S>(N, S{1, 0}));
    while (Q--) {
        int o;
        cin >> o;
        if (o == 0) {
            int p, x;
            cin >> p >> x;
            p--;
            deg y = x - T[p];
            double th = M_PI * y.val() / 180;
            seg.apply(p, N, F{cos(th), sin(th)});
            T[p] = deg::raw(x);
        } else if (o == 1) {
            int p, x;
            cin >> p >> x;
            p--;
            double y = double(x) / D[p];
            seg.set(p, seg.get(p) * y);
            D[p] = x;
        } else {
            int p;
            cin >> p;
            S ans = seg.prod(0, p);
            cout << fixed << setprecision(16) << ans.real() << " " << ans.imag() << '\n';
        }
    }
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0