結果

問題 No.2643 Many Range Sums Problems
ユーザー PNJPNJ
提出日時 2024-02-19 22:15:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,840 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 88,420 KB
最終ジャッジ日時 2024-09-29 02:11:19
合計ジャッジ時間 32,981 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,072 KB
testcase_01 AC 38 ms
52,560 KB
testcase_02 AC 45 ms
60,196 KB
testcase_03 AC 1,799 ms
86,248 KB
testcase_04 AC 1,643 ms
84,588 KB
testcase_05 AC 1,490 ms
84,612 KB
testcase_06 AC 2,102 ms
88,136 KB
testcase_07 AC 857 ms
82,880 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 782 ms
82,168 KB
testcase_11 AC 679 ms
80,688 KB
testcase_12 AC 878 ms
84,236 KB
testcase_13 AC 1,550 ms
86,816 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1,677 ms
85,804 KB
testcase_18 AC 657 ms
81,156 KB
testcase_19 AC 241 ms
79,044 KB
testcase_20 WA -
testcase_21 AC 234 ms
78,284 KB
testcase_22 AC 363 ms
79,024 KB
testcase_23 AC 490 ms
80,252 KB
testcase_24 AC 729 ms
83,020 KB
testcase_25 AC 712 ms
82,556 KB
testcase_26 AC 229 ms
79,280 KB
testcase_27 AC 223 ms
78,288 KB
testcase_28 AC 37 ms
53,264 KB
testcase_29 AC 38 ms
53,264 KB
testcase_30 AC 941 ms
83,168 KB
testcase_31 WA -
testcase_32 AC 926 ms
83,716 KB
testcase_33 AC 852 ms
83,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class WeightedUnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n+1)
        # 根への距離を管理
        self.weight = [0] * (n+1)

    # 検索
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            y = self.find(self.par[x])
            # 親への重みを追加しながら根まで走査
            self.weight[x] += self.weight[self.par[x]]
            self.par[x] = y
            return y

    # 併合
    def union(self, x, y, w):
        rx = self.find(x)
        ry = self.find(y)
        # xの木の高さ < yの木の高さ
        if self.rank[rx] < self.rank[ry]:
            self.par[rx] = ry
            self.weight[rx] = w - self.weight[x] + self.weight[y]
        # xの木の高さ ≧ yの木の高さ
        else:
            self.par[ry] = rx
            self.weight[ry] = -w - self.weight[y] + self.weight[x]
            # 木の高さが同じだった場合の処理
            if self.rank[rx] == self.rank[ry]:
                self.rank[rx] += 1

    # 同じ集合に属するか
    def same(self, x, y):
        return self.find(x) == self.find(y)

    # xからyへのコスト
    def diff(self, x, y):
        return self.weight[x] - self.weight[y]

def Map():
  return list(map(int,input().split()))

inf = 10**18
N,K = Map()
E = []
for j in range(N):
  R,X = Map()
  E.append((j,R,X))


for j in range(N):
  uf = WeightedUnionFind(N)
  ans = 'Yes'
  for i,r,x in E:
    if i == j:
      continue
    if uf.same(i,r):
      if uf.diff(i,r) == d:
        continue
      else:
        ans = 'No'
        break
    else:
      uf.union(i,r,x)
  for i in range(1,N+1):
    if not uf.same(i-1,i):
      continue
    if 0 <= uf.diff(i-1,i) <= K:
      continue
    ans = 'No'
    break
  print(ans)
0