結果

問題 No.2640 traO Stamps
ユーザー maeshunmaeshun
提出日時 2024-02-20 08:41:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,358 bytes
コンパイル時間 3,818 ms
コンパイル使用メモリ 267,504 KB
実行使用メモリ 10,104 KB
最終ジャッジ日時 2024-09-29 03:24:45
合計ジャッジ時間 12,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 190 ms
9,252 KB
testcase_07 AC 205 ms
9,208 KB
testcase_08 AC 214 ms
9,772 KB
testcase_09 AC 191 ms
6,816 KB
testcase_10 AC 207 ms
9,808 KB
testcase_11 AC 180 ms
7,040 KB
testcase_12 AC 202 ms
9,688 KB
testcase_13 AC 167 ms
7,040 KB
testcase_14 AC 210 ms
9,800 KB
testcase_15 AC 190 ms
7,168 KB
testcase_16 AC 184 ms
9,592 KB
testcase_17 AC 192 ms
9,672 KB
testcase_18 AC 198 ms
7,040 KB
testcase_19 AC 207 ms
9,748 KB
testcase_20 AC 207 ms
9,788 KB
testcase_21 AC 195 ms
7,040 KB
testcase_22 AC 209 ms
9,800 KB
testcase_23 AC 190 ms
6,912 KB
testcase_24 AC 198 ms
6,912 KB
testcase_25 AC 204 ms
9,924 KB
testcase_26 AC 206 ms
9,964 KB
testcase_27 AC 201 ms
10,104 KB
testcase_28 AC 198 ms
9,932 KB
testcase_29 AC 223 ms
9,968 KB
testcase_30 AC 226 ms
9,920 KB
testcase_31 AC 229 ms
10,020 KB
testcase_32 AC 217 ms
9,460 KB
testcase_33 AC 222 ms
9,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

ll op(ll a, ll b){
	return a+b;
}

ll e(){
	return 0;
}

int main()
{
	int n, m, k;
	cin >> n >> m >> k;
	const ll INF = 1e18;
	vector<int> s(k+1, -1);
	rep(i,k+1){
		int t;
		cin >> t;
		--t;
		s[i] = t;
	}
	vector<vector<ll>> dist(n, vector<ll>(n, INF));
	rep(i,m){
		int u, v, c;
		cin >> u >> v >> c;
		--u;--v;
		dist[u][v] = min(dist[u][v], (ll)c);
		dist[v][u] = min(dist[v][u], (ll)c);
	}
	rep(i,n)dist[i][i] = 0;
	rep(k,n)rep(i,n)rep(j,n) dist[i][j] = min(dist[i][j], dist[i][k]+dist[k][j]);
	segtree<ll, op, e> seg(k+1);
	dbg(s);
	rep(i,k) {
		seg.set(i, dist[s[i]][s[i+1]]);
	}
	int q;
	cin >> q;
	while(q--){
		int t, x, y;
		cin >> t >> x >> y;
		if(t==1){
			s[x] = --y;
			if(x-1>=0) {
				seg.set(x-1, dist[s[x-1]][s[x]]);
			}
			if(x+1<=k) {
				seg.set(x, dist[s[x]][s[x+1]]);
			}
		}
		else{
			ll ans = seg.prod(x, y);
			cout << ans << endl;
		}
	}
	return 0;
}
0