結果

問題 No.1053 ゲーミング棒
ユーザー ashipanashipan
提出日時 2020-05-15 22:31:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 890 bytes
コンパイル時間 1,384 ms
コンパイル使用メモリ 169,584 KB
実行使用メモリ 15,892 KB
最終ジャッジ日時 2024-09-19 11:28:51
合計ジャッジ時間 3,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 6 ms
15,360 KB
testcase_06 WA -
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 6 ms
15,468 KB
testcase_14 RE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 5 ms
15,308 KB
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 4 ms
15,280 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
using namespace std;
using ll = long long;
using P = pair<int, int>;

vector<int> to[500005];
vector<int> ans;
vector<int> done;
void dfs(int v, int p = -1, int b = 0){
    done[v] = b;
    for(auto u : to[v]){
        if(u == p) continue;
        if(done[u] == b) continue;
        ans[u] += b;
        dfs(u, v, b);
    }
}

int main()
{
    int n, q;
    scanf("%d %d", &n, &q);
    ans.resize(n);
    done.resize(n);
    rep(i, 0, q){
        int t, a, b;
        scanf("%d %d %d", &t, &a, &b);
        a--;
        if(t == 1){
            b--;
            to[a].push_back(b);
            to[b].push_back(a);
        }
        else if(t == 2){
            ans[a] += b;
            done[a] = 1;
            dfs(a, -1, b);
        }
        else{
            printf("%d\n", ans[a]);
        }
    }
    return 0;
}
0