結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
97,172 KB
testcase_01 AC 286 ms
97,188 KB
testcase_02 AC 133 ms
80,180 KB
testcase_03 AC 131 ms
80,104 KB
testcase_04 AC 127 ms
79,928 KB
testcase_05 AC 118 ms
79,492 KB
testcase_06 AC 128 ms
79,968 KB
testcase_07 AC 123 ms
80,068 KB
testcase_08 AC 100 ms
80,216 KB
testcase_09 AC 103 ms
79,880 KB
testcase_10 AC 113 ms
79,976 KB
testcase_11 AC 126 ms
80,328 KB
testcase_12 AC 261 ms
96,928 KB
testcase_13 AC 358 ms
97,008 KB
testcase_14 AC 344 ms
97,008 KB
testcase_15 AC 398 ms
97,000 KB
testcase_16 AC 314 ms
97,016 KB
testcase_17 AC 292 ms
97,080 KB
testcase_18 AC 365 ms
97,000 KB
testcase_19 AC 352 ms
97,268 KB
testcase_20 AC 321 ms
97,276 KB
testcase_21 AC 373 ms
96,832 KB
testcase_22 AC 307 ms
97,328 KB
testcase_23 AC 128 ms
79,984 KB
testcase_24 AC 107 ms
79,936 KB
testcase_25 AC 100 ms
79,816 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