結果
問題 | No.2643 Many Range Sums Problems |
ユーザー | chineristAC |
提出日時 | 2024-02-19 22:38:07 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,015 ms / 8,000 ms |
コード長 | 2,118 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 82,200 KB |
実行使用メモリ | 86,312 KB |
最終ジャッジ日時 | 2024-09-29 02:29:24 |
合計ジャッジ時間 | 17,115 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
57,832 KB |
testcase_01 | AC | 46 ms
56,268 KB |
testcase_02 | AC | 47 ms
56,904 KB |
testcase_03 | AC | 632 ms
84,020 KB |
testcase_04 | AC | 530 ms
82,036 KB |
testcase_05 | AC | 520 ms
81,972 KB |
testcase_06 | AC | 716 ms
85,088 KB |
testcase_07 | AC | 689 ms
85,072 KB |
testcase_08 | AC | 555 ms
83,740 KB |
testcase_09 | AC | 694 ms
85,712 KB |
testcase_10 | AC | 638 ms
84,500 KB |
testcase_11 | AC | 501 ms
82,276 KB |
testcase_12 | AC | 1,015 ms
85,524 KB |
testcase_13 | AC | 558 ms
86,312 KB |
testcase_14 | AC | 508 ms
84,324 KB |
testcase_15 | AC | 518 ms
84,944 KB |
testcase_16 | AC | 518 ms
82,988 KB |
testcase_17 | AC | 562 ms
83,448 KB |
testcase_18 | AC | 263 ms
79,832 KB |
testcase_19 | AC | 102 ms
77,724 KB |
testcase_20 | AC | 201 ms
78,756 KB |
testcase_21 | AC | 104 ms
77,616 KB |
testcase_22 | AC | 262 ms
78,824 KB |
testcase_23 | AC | 393 ms
79,956 KB |
testcase_24 | AC | 713 ms
83,584 KB |
testcase_25 | AC | 610 ms
82,064 KB |
testcase_26 | AC | 143 ms
78,416 KB |
testcase_27 | AC | 151 ms
78,128 KB |
testcase_28 | AC | 47 ms
57,572 KB |
testcase_29 | AC | 47 ms
56,612 KB |
testcase_30 | AC | 690 ms
85,820 KB |
testcase_31 | AC | 615 ms
85,472 KB |
testcase_32 | AC | 998 ms
85,388 KB |
testcase_33 | AC | 986 ms
85,688 KB |
ソースコード
import sys from itertools import permutations from heapq import heappop,heappush from collections import deque import random import bisect input = lambda :sys.stdin.readline().rstrip() mi = lambda :map(int,input().split()) li = lambda :list(mi()) class UnionFindVerSize(): def __init__(self, N): self._parent = [n for n in range(0, N)] self._size = [1] * N self.group = N def find_root(self, x): if self._parent[x] == x: return x self._parent[x] = self.find_root(self._parent[x]) return self._parent[x] def unite(self, x, y): gx = self.find_root(x) gy = self.find_root(y) if gx == gy: return self.group -= 1 if self._size[gx] < self._size[gy]: self._parent[gx] = gy self._size[gy] += self._size[gx] else: self._parent[gy] = gx self._size[gx] += self._size[gy] def get_size(self, x): return self._size[self.find_root(x)] def is_same_group(self, x, y): return self.find_root(x) == self.find_root(y) N,K = mi() cond = [] for _ in range(N): r,x = mi() cond.append((r,x)) res = [] for i in range(N): tmp = [(0,0)] * (N+1) for j in range(N)[::-1]: if j!=i: r,x = cond[j] """ A_j + tmp[j+1] - tmp[r] = X[j] """ a,b = -(tmp[j+1][0] - tmp[r][0]),x-(tmp[j+1][1] - tmp[r][1]) tmp[j] = (tmp[j+1][0]+a,tmp[j+1][1]+b) else: tmp[j] = (tmp[j+1][0]+1,tmp[j+1][1]) #print(tmp) l,r = 0,K for j in range(N): a,b = tmp[j][0]-tmp[j+1][0],tmp[j][1]-tmp[j+1][1] #print(a,b) if a == 0: if not 0 <= b <= K: res.append("No") break elif 0 < a: l = max(l,(-b+a-1)//a) r = min(r,(K-b)//a) else: r = min(r,(b)//(-a)) l = max(l,(-K+b+(-a)-1)//(-a)) else: #print("lr",l,r) res.append("Yes" if l <= r else "No") print(*res,sep="\n")