結果

問題 No.54 Happy Hallowe'en
ユーザー rpy3cpprpy3cpp
提出日時 2015-08-02 00:24:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,147 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-18 00:43:50
合計ジャッジ時間 2,183 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 41 ms
11,264 KB
testcase_05 AC 46 ms
11,392 KB
testcase_06 AC 51 ms
11,776 KB
testcase_07 AC 57 ms
12,032 KB
testcase_08 AC 62 ms
12,160 KB
testcase_09 AC 69 ms
12,544 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 RE -
testcase_13 AC 64 ms
12,544 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N = int(input())
    VT = []
    for n in range(N):
        v, t = map(int, input().split())
        VT.append((v + t, v, t))
    return N, VT

def solve(N, VT):
    VT.sort(reverse=True)
    upper = min(VT[0][0], sum(v for vt, v, t in VT) + 1)
    lower = 1
    while lower + 1 < upper:
        mid = (upper + lower) // 2
        if is_valid(mid, VT):
            lower = mid
        else:
            upper = mid
    return lower

def is_valid(val, VT):
    used = [False] * len(VT)
    lower = val
    upper = float('inf')
    return dfs(lower, upper, VT, used)

def dfs(lower, upper, VT, used):
    '''VTのうち、used でないものを使って、lower 以上、upper 未満の選び方をできるかを返す。
    '''
    for i, (val, v, t) in enumerate(VT):
        if val < lower:
            return False
        if used[i] or v >= upper:
            continue
        if v >= lower:
            return True
        used[i] = True
        result = dfs(lower - v, min(upper, t), VT, used)
        used[i] = False
        if result:
            return True
    return False

N, VT = read_data()
print(solve(N, VT))
0