結果

問題 No.2741 Balanced Choice
ユーザー satosato
提出日時 2024-04-20 17:51:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 651 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,800 KB
最終ジャッジ日時 2024-10-12 13:48:08
合計ジャッジ時間 6,574 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W,D = map(int,input().split(' '))

stones=[]
for i in range(N):
    stone={}
    t,w,v = map(int,input().split(' '))
    stone['t']=t
    stone['w']=w
    stone['v']=v
    stones.append(stone)

max_v = 0
for i in range(pow(2,N)):
    choice = format(i,'0'+str(N)+'b')
    W0=0
    W1=0
    W01=0
    V=0
    flag = True
    for j in range(N):
        if choice[j]=='1':
            if stones[j]['t']==0:
                W0+=stones[j]['w']
            else:
                W1+=stones[j]['w']
            W01+=stones[j]['w']
            V+=stones[j]['v']
    if ((abs(W0-W1)<=D) and (W01 <= W)):
        if max_v < V:
            max_v=V
print(max_v)
0