結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー vwxyzvwxyz
提出日時 2024-09-28 00:52:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 1,000 ms
コード長 1,107 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 97,456 KB
最終ジャッジ日時 2024-09-28 00:52:36
合計ジャッジ時間 7,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
96,912 KB
testcase_01 AC 261 ms
97,180 KB
testcase_02 AC 126 ms
80,128 KB
testcase_03 AC 124 ms
79,872 KB
testcase_04 AC 127 ms
80,220 KB
testcase_05 AC 111 ms
80,128 KB
testcase_06 AC 129 ms
80,000 KB
testcase_07 AC 118 ms
79,872 KB
testcase_08 AC 107 ms
80,224 KB
testcase_09 AC 104 ms
79,744 KB
testcase_10 AC 113 ms
80,000 KB
testcase_11 AC 123 ms
80,240 KB
testcase_12 AC 252 ms
97,268 KB
testcase_13 AC 324 ms
96,748 KB
testcase_14 AC 322 ms
97,260 KB
testcase_15 AC 380 ms
97,004 KB
testcase_16 AC 325 ms
97,012 KB
testcase_17 AC 244 ms
96,956 KB
testcase_18 AC 335 ms
96,624 KB
testcase_19 AC 341 ms
97,264 KB
testcase_20 AC 281 ms
97,016 KB
testcase_21 AC 353 ms
96,972 KB
testcase_22 AC 261 ms
97,456 KB
testcase_23 AC 122 ms
80,128 KB
testcase_24 AC 106 ms
80,000 KB
testcase_25 AC 106 ms
79,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,M=map(int,readline().split())
X,A,B=[],[],[]
idx=[[] for i in range(10**5+1)]
for i in range(N):
    x,a,b=map(int,readline().split())
    X.append(x)
    A.append(a)
    B.append(b)
    if a==b:
        idx[a].append(i)
    else:
        idx[a].append(i)
        idx[b].append(i)
cnt=[0]*6
for x in X:
    cnt[x+1]+=1
b=10**5+1
ans=N
for a in range(10**5+2):
    if a:
        for i in idx[a-1]:
            x=X[i]
            if A[i]>=a-1:
                x+=1
            if B[i]>=b:
                x+=1
            cnt[x]-=1
            x=X[i]
            if A[i]>=a:
                x+=1
            if B[i]>=b:
                x+=1
            cnt[x]+=1
    while b and sum(cnt[2:])<M:
        for i in idx[b-1]:
            x=X[i]
            if A[i]>=a:
                x+=1
            if B[i]>=b:
                x+=1
            cnt[x]-=1
            x=X[i]
            if A[i]>=a:
                x+=1
            if B[i]>=b-1:
                x+=1
            cnt[x]+=1
        b-=1
    if sum(cnt[2:])>=M:
        ans=min(ans,sum(cnt[3:]))
print(ans)
0