結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,804 KB
testcase_01 AC 36 ms
53,728 KB
testcase_02 AC 36 ms
52,868 KB
testcase_03 AC 59 ms
69,464 KB
testcase_04 AC 64 ms
71,892 KB
testcase_05 AC 61 ms
70,852 KB
testcase_06 AC 83 ms
76,516 KB
testcase_07 AC 88 ms
76,504 KB
testcase_08 AC 87 ms
76,736 KB
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 AC 92 ms
77,264 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 39 ms
53,268 KB
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(reverse=True)
disc.sort(reverse=True)
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 len(disc)<=posi+1:
                pt1=i
            else:
                pt1=max(next-disc[posi+1],0)
            if len(disc_per)<=posi_per+1:
                pt2=i
            else:
                pt2=max(next*(100-disc_per[posi_per+1])//100,0)
            if pt1<pt2:
                posi_per+=1
            else:
                posi+=1
print(ans)
0