結果

問題 No.2463 ストレートフラッシュ
ユーザー rlangevinrlangevin
提出日時 2023-09-08 21:58:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-06-26 14:58:27
合計ジャッジ時間 4,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 AC 33 ms
52,352 KB
testcase_03 AC 41 ms
62,336 KB
testcase_04 AC 49 ms
65,536 KB
testcase_05 AC 47 ms
67,328 KB
testcase_06 AC 37 ms
59,264 KB
testcase_07 AC 42 ms
62,720 KB
testcase_08 AC 46 ms
65,280 KB
testcase_09 AC 49 ms
69,632 KB
testcase_10 AC 44 ms
64,000 KB
testcase_11 AC 37 ms
59,392 KB
testcase_12 AC 46 ms
65,664 KB
testcase_13 AC 179 ms
77,312 KB
testcase_14 AC 200 ms
77,696 KB
testcase_15 AC 190 ms
78,080 KB
testcase_16 AC 202 ms
77,552 KB
testcase_17 AC 233 ms
78,336 KB
testcase_18 AC 244 ms
77,952 KB
testcase_19 AC 239 ms
78,208 KB
testcase_20 AC 241 ms
78,464 KB
testcase_21 AC 217 ms
77,952 KB
testcase_22 AC 231 ms
78,324 KB
testcase_23 AC 235 ms
78,208 KB
testcase_24 AC 234 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
ind = [[-1] * (N + 1) for i in range(M)]
for i in range(N * M):
    n, m = map(int, input().split())
    n, m = n - 1, m - 1
    ind[m][n] = i
    
for m in range(M):
    ind[m][-1] = ind[m][0]
   

def solve(A):
    now = -1
    card = 0
    cnt = 0
    while card != 5:
        nex = A[card]
        d = 5 - card
        n = (nex - now + d - 1)//d
        now += d * n
        cnt += n
        card = 0
        for i in range(5):
            if A[i] <= now:
                card += 1
    return cnt - 1
            
            

ans = 10 ** 18 
for m in range(M):
    for i in range(N - 3):
        L = []
        for j in range(5):
            L.append(ind[m][i + j])
        L.sort()
        ans = min(ans, solve(L))
        
print(ans)
0