結果
問題 | No.2640 traO Stamps |
ユーザー | timi |
提出日時 | 2024-02-19 22:16:16 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 802 ms / 2,000 ms |
コード長 | 2,949 bytes |
コンパイル時間 | 388 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 105,248 KB |
最終ジャッジ日時 | 2024-09-29 02:12:14 |
合計ジャッジ時間 | 21,949 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,484 KB |
testcase_01 | AC | 38 ms
53,380 KB |
testcase_02 | AC | 37 ms
53,796 KB |
testcase_03 | AC | 39 ms
54,124 KB |
testcase_04 | AC | 38 ms
52,964 KB |
testcase_05 | AC | 39 ms
53,092 KB |
testcase_06 | AC | 624 ms
96,108 KB |
testcase_07 | AC | 638 ms
96,212 KB |
testcase_08 | AC | 698 ms
101,260 KB |
testcase_09 | AC | 493 ms
91,580 KB |
testcase_10 | AC | 703 ms
101,284 KB |
testcase_11 | AC | 673 ms
93,572 KB |
testcase_12 | AC | 634 ms
104,100 KB |
testcase_13 | AC | 705 ms
93,696 KB |
testcase_14 | AC | 751 ms
100,852 KB |
testcase_15 | AC | 757 ms
93,836 KB |
testcase_16 | AC | 673 ms
101,256 KB |
testcase_17 | AC | 703 ms
101,172 KB |
testcase_18 | AC | 651 ms
93,888 KB |
testcase_19 | AC | 702 ms
104,636 KB |
testcase_20 | AC | 532 ms
101,076 KB |
testcase_21 | AC | 686 ms
93,660 KB |
testcase_22 | AC | 802 ms
104,252 KB |
testcase_23 | AC | 622 ms
91,552 KB |
testcase_24 | AC | 738 ms
91,936 KB |
testcase_25 | AC | 594 ms
104,780 KB |
testcase_26 | AC | 598 ms
104,920 KB |
testcase_27 | AC | 596 ms
104,988 KB |
testcase_28 | AC | 616 ms
105,028 KB |
testcase_29 | AC | 642 ms
105,248 KB |
testcase_30 | AC | 593 ms
104,648 KB |
testcase_31 | AC | 597 ms
104,468 KB |
testcase_32 | AC | 562 ms
98,216 KB |
testcase_33 | AC | 579 ms
100,904 KB |
ソースコード
N,M,K=map(int, input().split()) S=list(map(int, input().split())) def warshall_floyd(d): #d[i][j]: iからjへの最短距離 for k in range(n): for i in range(n): for j in range(n): d[i][j] = min(d[i][j],d[i][k] + d[k][j]) return d ############################## n,w =N,M d = [[float("inf")]*n for i in range(n)] #d[u][v] : 辺uvのコスト(存在しないときはinf) for i in range(w): x,y,z = map(int,input().split()) x-=1;y-=1 d[x][y] = z;d[y][x] = z for i in range(n): d[i][i] = 0 #自身のところに行くコストは0 B=(warshall_floyd(d)) #####segfunc##### def segfunc(x, y): return x+y ################# #####ide_ele##### ide_ele = 0 ################# class SegTree: """ init(init_val, ide_ele): 配列init_valで初期化 O(N) update(k, x): k番目の値をxに更新 O(N) query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN) """ def __init__(self, init_val, segfunc, ide_ele): """ init_val: 配列の初期値 segfunc: 区間にしたい操作 ide_ele: 単位元 n: 要素数 num: n以上の最小の2のべき乗 tree: セグメント木(1-index) """ n = len(init_val) self.segfunc = segfunc self.ide_ele = ide_ele self.num = 1 << (n - 1).bit_length() self.tree = [ide_ele] * 2 * self.num # 配列の値を葉にセット for i in range(n): self.tree[self.num + i] = init_val[i] # 構築していく for i in range(self.num - 1, 0, -1): self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1]) def update(self, k, x): """ k番目の値をxに更新 k: index(0-index) x: update value """ k += self.num self.tree[k] = x while k > 1: self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1]) k >>= 1 def query(self, l, r): """ [l, r)のsegfuncしたものを得る l: index(0-index) r: index(0-index) """ res = self.ide_ele l += self.num r += self.num while l < r: if l & 1: res = self.segfunc(res, self.tree[l]) l += 1 if r & 1: res = self.segfunc(res, self.tree[r - 1]) l >>= 1 r >>= 1 return res A=[] for i in range(K): p,q=S[i],S[i+1] A.append(B[p-1][q-1]) seg = SegTree(A, segfunc, ide_ele) Q=int(input()) for i in range(Q): t,x,y=map(int, input().split()) if t==1: p,q=x-1,x if x-1>=0: l=S[x-1]-1 d=B[l][y-1] seg.update(x-1,d) if x+1<=K: r=S[x+1]-1 d=B[r][y-1] seg.update(x,d) S[x]=y else: print(seg.query(x,y)) # print(seg.query(0, 8)) # seg.update(5, 0) # print(seg.query(0, 8))