結果
問題 | No.2640 traO Stamps |
ユーザー | ponjuice |
提出日時 | 2024-02-13 17:03:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,300 bytes |
コンパイル時間 | 3,817 ms |
コンパイル使用メモリ | 266,292 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-28 18:31:45 |
合計ジャッジ時間 | 11,095 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 140 ms
6,816 KB |
testcase_27 | AC | 143 ms
6,820 KB |
testcase_28 | AC | 130 ms
6,820 KB |
testcase_29 | AC | 156 ms
6,816 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using ll = long long; int main(){ cin.tie(0); ios::sync_with_stdio(0); int n, m, k; cin >> n >> m >> k; vector<int> s(k+1); for(int i = 0; i < k + 1; i++) { cin >> s[i]; s[i]--; } vector<vector<ll>> wf(n, vector<ll>(n, LONG_MAX >> 1)); for(int i = 0; i < m; i++){ int a, b, c; cin >> a >> b >> c; a--,b--; wf[a][b] = c; wf[b][a] = c; } for(int l = 0; l < n; l++){ for(int i = 0; i < n; i++){ for(int j = 0; j < n; j++){ wf[i][j] = min(wf[i][j], wf[i][l] + wf[l][j]); } } } fenwick_tree<ll> tree(k); for(int i = 0; i < k; i++){ tree.add(i, wf[s[i]][s[i+1]]); } int q; cin >> q; while(q--){ int t; cin >> t; if(t == 1){ int x, y; cin >> x >> y; y--; if(x != 0) tree.add(x-1, wf[s[x-1]][y] - wf[s[x-1]][s[x]]); if(x != k) tree.add(x, wf[y][s[x+1]] - wf[s[x]][s[x+1]]); s[x] = y; } if(t == 2){ int x,y; cin >> x >> y; cout << tree.sum(x, y) << endl; } } }