結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー vwxyzvwxyz
提出日時 2022-05-18 00:21:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,048 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,600 KB
最終ジャッジ日時 2024-09-15 23:16:27
合計ジャッジ時間 19,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 816 ms
48,204 KB
testcase_01 AC 820 ms
48,332 KB
testcase_02 AC 354 ms
33,920 KB
testcase_03 AC 353 ms
33,792 KB
testcase_04 AC 353 ms
33,792 KB
testcase_05 AC 283 ms
34,048 KB
testcase_06 AC 356 ms
34,048 KB
testcase_07 AC 352 ms
33,792 KB
testcase_08 AC 250 ms
33,920 KB
testcase_09 AC 279 ms
33,792 KB
testcase_10 AC 285 ms
33,792 KB
testcase_11 AC 357 ms
34,048 KB
testcase_12 AC 811 ms
48,472 KB
testcase_13 TLE -
testcase_14 AC 977 ms
48,088 KB
testcase_15 TLE -
testcase_16 AC 948 ms
47,444 KB
testcase_17 AC 802 ms
47,832 KB
testcase_18 AC 978 ms
47,428 KB
testcase_19 AC 978 ms
48,212 KB
testcase_20 AC 828 ms
47,828 KB
testcase_21 TLE -
testcase_22 AC 829 ms
48,200 KB
testcase_23 AC 356 ms
33,664 KB
testcase_24 AC 289 ms
33,664 KB
testcase_25 AC 286 ms
33,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,M=map(int,readline().split())
X,A,B=[],[],[]
idx=[set() 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)
    idx[a].add(i)
    idx[b].add(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