結果

問題 No.1570 Blocks
ユーザー moharan627moharan627
提出日時 2021-06-27 15:31:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,065 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 33,016 KB
最終ジャッジ日時 2024-06-25 11:30:17
合計ジャッジ時間 13,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 200 ms
25,264 KB
testcase_03 AC 397 ms
29,504 KB
testcase_04 AC 176 ms
23,580 KB
testcase_05 AC 189 ms
24,160 KB
testcase_06 AC 287 ms
25,200 KB
testcase_07 AC 50 ms
12,672 KB
testcase_08 AC 378 ms
28,980 KB
testcase_09 AC 446 ms
31,636 KB
testcase_10 AC 239 ms
27,140 KB
testcase_11 AC 269 ms
28,996 KB
testcase_12 AC 465 ms
32,356 KB
testcase_13 AC 311 ms
32,096 KB
testcase_14 AC 304 ms
32,640 KB
testcase_15 AC 133 ms
20,352 KB
testcase_16 AC 318 ms
32,500 KB
testcase_17 AC 181 ms
20,352 KB
testcase_18 AC 250 ms
27,896 KB
testcase_19 AC 182 ms
20,360 KB
testcase_20 AC 125 ms
20,204 KB
testcase_21 AC 333 ms
27,048 KB
testcase_22 AC 33 ms
10,880 KB
testcase_23 AC 31 ms
10,880 KB
testcase_24 AC 34 ms
10,880 KB
testcase_25 AC 32 ms
11,008 KB
testcase_26 AC 31 ms
11,008 KB
testcase_27 AC 33 ms
11,008 KB
testcase_28 AC 34 ms
10,880 KB
testcase_29 AC 32 ms
10,880 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 455 ms
32,116 KB
testcase_33 AC 453 ms
32,564 KB
testcase_34 AC 281 ms
30,560 KB
testcase_35 AC 444 ms
32,292 KB
testcase_36 AC 292 ms
31,412 KB
testcase_37 AC 423 ms
31,352 KB
testcase_38 WA -
testcase_39 AC 298 ms
32,520 KB
testcase_40 AC 293 ms
31,560 KB
testcase_41 AC 450 ms
32,368 KB
testcase_42 AC 309 ms
32,952 KB
testcase_43 AC 309 ms
32,956 KB
testcase_44 AC 309 ms
32,856 KB
testcase_45 AC 315 ms
32,852 KB
testcase_46 AC 462 ms
33,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N = II()
    Block = [0]*N
    Asum = 0
    for n in range(N):
        A,B = MI()
        Block[n] = (A,B)
        Asum += A
    from operator import itemgetter
    Bs = sorted(Block, key = itemgetter(1,0),reverse=True)
    Acum = 0
    #print(Bs)
    I = 0
    from heapq import heappop, heappush
    H = []
    for n in range(N):
        while(I<N):
            a, b = Bs[I]
            if(Asum-(Acum+a) <= b):
                I+=1
                heappush(H,-a)
            else:
                break
        #print(H)
        if not H :
            print("No")
            exit()
        else:
            Acum += -heappop(H)
    print("Yes")
    return
solve()
0