結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー Ryoma IshiiRyoma Ishii
提出日時 2024-01-16 02:41:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 711 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 95,884 KB
最終ジャッジ日時 2024-09-28 02:25:57
合計ジャッジ時間 6,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
95,268 KB
testcase_01 AC 282 ms
95,404 KB
testcase_02 AC 126 ms
83,328 KB
testcase_03 AC 125 ms
83,492 KB
testcase_04 AC 128 ms
83,072 KB
testcase_05 AC 116 ms
83,456 KB
testcase_06 AC 126 ms
82,944 KB
testcase_07 AC 126 ms
83,072 KB
testcase_08 AC 106 ms
83,200 KB
testcase_09 AC 114 ms
83,456 KB
testcase_10 AC 114 ms
83,456 KB
testcase_11 AC 128 ms
83,072 KB
testcase_12 AC 276 ms
94,844 KB
testcase_13 AC 318 ms
95,000 KB
testcase_14 AC 309 ms
94,624 KB
testcase_15 AC 338 ms
95,884 KB
testcase_16 AC 316 ms
95,392 KB
testcase_17 AC 278 ms
94,360 KB
testcase_18 AC 304 ms
95,128 KB
testcase_19 AC 301 ms
94,988 KB
testcase_20 AC 290 ms
95,244 KB
testcase_21 AC 310 ms
95,116 KB
testcase_22 WA -
testcase_23 AC 124 ms
83,072 KB
testcase_24 AC 117 ms
83,456 KB
testcase_25 AC 117 ms
83,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
W=10**5+10
C=[0,0,0,0,0,0]
A=[[] for i in range(W)]
B=[[] for i in range(W)]
Student=[]

for i in range(N):
    x,a,b=map(int,input().split())
    Student.append(x+1)
    A[a].append(i)
    B[b].append(i)
    C[x+1]+=1
#print(C)   
SA=0
SB=100000
ans=2**60
while SA<100000:
    #print(SA,SB,C)
    if sum(C[2:])>=M and sum(C[3:])<ans:
        ans=sum(C[3:])
    
    for ids in A[SA]:
        C[Student[ids]]-=1
        Student[ids]-=1
        C[Student[ids]]+=1
    SA+=1
    
    while SB>0 and sum(C[2:])<M:
        #print(C,sum(C[2:]),M)
        SB-=1
        for ids in B[SB]:
            C[Student[ids]]-=1
            Student[ids]+=1
            C[Student[ids]]+=1
print(ans)
0