結果

問題 No.1430 Coup de Coupon
ユーザー NoaSaberNoaSaber
提出日時 2021-04-26 13:27:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 979 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 77,204 KB
最終ジャッジ日時 2024-07-04 22:16:25
合計ジャッジ時間 3,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,436 KB
testcase_01 AC 38 ms
52,236 KB
testcase_02 AC 37 ms
53,480 KB
testcase_03 AC 58 ms
68,700 KB
testcase_04 AC 60 ms
71,048 KB
testcase_05 AC 59 ms
70,136 KB
testcase_06 AC 84 ms
76,732 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,C=map(int,input().split())
P=[int(input()) for i in range(N)]
disc=[]
disc_per=[]
P.sort(reverse=True)
for i in range(C):
    t,x=map(int,input().split())
    if t==1:
        disc.append(x)
    else:
        disc_per.append(x)
disc_per.sort()
disc.sort()
posi,posi_per=0,0
ans=0
for j,i in enumerate(P):
    if len(disc)<=posi and len(disc_per)<=posi_per:
        ans+=i
        continue
    if len(disc)<=posi:
        pt1=i
    else:
        pt1=max(i-disc[posi],0)
    if len(disc_per)<=posi_per:
        pt2=i
    else:
        pt2=max(i*(100-disc_per[posi_per])//100,0)
    if pt1>pt2:
        posi_per+=1
        ans+=pt2
    elif pt2>pt1:
        posi+=1
        ans+=pt1
    else:
        if j==len(P)-1:
            ans+=pt1
            break
        else:
            ans+=pt1
            next=P[j+1]
            if max(next-disc[posi+1],0)<max(next*(100-disc_per[posi_per+1])//100,0):
                posi_per+=1
            else:
                posi+=1
print(ans)
0