結果

問題 No.2463 ストレートフラッシュ
ユーザー KazunKazun
提出日時 2021-05-25 00:32:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 78,820 KB
最終ジャッジ日時 2024-06-26 08:01:52
合計ジャッジ時間 5,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,416 KB
testcase_01 AC 39 ms
52,772 KB
testcase_02 AC 38 ms
53,420 KB
testcase_03 AC 42 ms
54,528 KB
testcase_04 AC 55 ms
63,860 KB
testcase_05 AC 55 ms
65,532 KB
testcase_06 AC 40 ms
53,680 KB
testcase_07 AC 49 ms
62,144 KB
testcase_08 AC 52 ms
62,572 KB
testcase_09 AC 72 ms
73,420 KB
testcase_10 AC 49 ms
61,060 KB
testcase_11 AC 40 ms
53,560 KB
testcase_12 AC 56 ms
64,992 KB
testcase_13 AC 228 ms
77,828 KB
testcase_14 AC 250 ms
78,076 KB
testcase_15 AC 243 ms
78,208 KB
testcase_16 AC 257 ms
78,132 KB
testcase_17 AC 286 ms
78,700 KB
testcase_18 AC 298 ms
78,764 KB
testcase_19 AC 299 ms
78,556 KB
testcase_20 AC 300 ms
78,556 KB
testcase_21 AC 259 ms
78,820 KB
testcase_22 AC 272 ms
78,712 KB
testcase_23 AC 291 ms
78,552 KB
testcase_24 AC 299 ms
78,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def r(Y):
    Y.sort()

    a=0; i=0
    t=0
    while True:
        b=Y[i]
        j=5-i

        u=((b-a)+(j-1))//j
        t+=u
        c=a+j*u

        if i==4:
            return t

        while True:
            if Y[i+1]<=c:
                i+=1
                if i==4:
                    break
            else:
                break

        if i==4:
            return t
        else:
            a=c
            i+=1

N,M=map(int,input().split())

#カードの位置を記録
Index=[[-1]*N for _ in range(M)]
for i in range(1,N*M+1):
    n,m=map(int,input().split())
    Index[m-1][n-1]=i

#全探索
X=float("inf")
for y in range(M):
    # x, x+1, x+2, x+3, x+4 タイプを処理
    for x in range(N-4):
        X=min(X,r(Index[y][x:x+5]))

    # x-3, x-2, x-1, x, 1 タイプを処理
    X=min(X,r([Index[y][0]]+Index[y][-4:]))

print(X-1)
0