結果

問題 No.2463 ストレートフラッシュ
ユーザー detteiuudetteiuu
提出日時 2024-12-22 03:51:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-12-22 03:51:59
合計ジャッジ時間 6,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
52,444 KB
testcase_03 AC 50 ms
60,160 KB
testcase_04 AC 68 ms
66,688 KB
testcase_05 AC 68 ms
67,584 KB
testcase_06 AC 42 ms
52,352 KB
testcase_07 AC 52 ms
61,440 KB
testcase_08 AC 63 ms
65,280 KB
testcase_09 AC 90 ms
77,100 KB
testcase_10 AC 54 ms
61,568 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 70 ms
67,200 KB
testcase_13 AC 274 ms
95,616 KB
testcase_14 AC 303 ms
98,572 KB
testcase_15 AC 321 ms
97,536 KB
testcase_16 AC 296 ms
99,280 KB
testcase_17 AC 332 ms
102,748 KB
testcase_18 AC 365 ms
104,704 KB
testcase_19 AC 353 ms
104,320 KB
testcase_20 AC 389 ms
104,320 KB
testcase_21 AC 341 ms
104,448 KB
testcase_22 AC 349 ms
104,576 KB
testcase_23 AC 385 ms
104,704 KB
testcase_24 AC 350 ms
104,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
card = [list(map(int, input().split())) for _ in range(N*M)]

IDX = [[-1]*N for _ in range(M)]
for i, (n, m) in enumerate(card):
    IDX[m-1][n-1] = i

def func(A):
    now = -1
    idx = 0
    cnt = 0
    while idx < 5:
        RANGE = A[idx]-now-1
        c = RANGE//(5-idx)+1
        cnt += c
        now += (5-idx)*c
        while idx < 5 and A[idx] <= now:
            idx += 1
    return cnt-1

ans = 10**18
for i in range(M):
    for j in range(N-5+1):
        A = sorted(IDX[i][j:j+5])
        ans = min(ans, func(A))
    ans = min(ans, func(sorted([IDX[i][0]]+IDX[i][-4:])))

print(ans)
0