結果

問題 No.2463 ストレートフラッシュ
ユーザー miya145592miya145592
提出日時 2023-09-08 23:41:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 1,123 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,344 KB
最終ジャッジ日時 2024-06-26 17:10:32
合計ジャッジ時間 8,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 57 ms
63,744 KB
testcase_04 AC 78 ms
72,960 KB
testcase_05 AC 86 ms
76,672 KB
testcase_06 AC 41 ms
52,736 KB
testcase_07 AC 59 ms
65,536 KB
testcase_08 AC 75 ms
72,960 KB
testcase_09 AC 102 ms
77,328 KB
testcase_10 AC 66 ms
68,352 KB
testcase_11 AC 43 ms
53,760 KB
testcase_12 AC 79 ms
73,564 KB
testcase_13 AC 354 ms
96,000 KB
testcase_14 AC 384 ms
99,296 KB
testcase_15 AC 386 ms
98,156 KB
testcase_16 AC 393 ms
99,452 KB
testcase_17 AC 458 ms
103,296 KB
testcase_18 AC 485 ms
105,088 KB
testcase_19 AC 470 ms
105,344 KB
testcase_20 AC 478 ms
105,224 KB
testcase_21 AC 446 ms
105,088 KB
testcase_22 AC 454 ms
105,148 KB
testcase_23 AC 439 ms
105,168 KB
testcase_24 AC 449 ms
105,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
NM = [list(map(int, input().split())) for _ in range(N*M)]
dp = [[0 for _ in range(N+1)] for _ in range(M)]
for i in range(5):
    n, m = NM[i]
    n-=1
    m-=1
    dp[m][n] = 1
    if n==0:
        dp[m][N] = 1
cnt = 1
for i in range(5, N*M):
    n, m = NM[i]
    n-=1
    m-=1
    dp[m][n] = cnt+1
    if n==0:
        dp[m][N] = cnt+1
    cnt+=1
#print(dp)
INF = N*M
ans = INF
for i in range(M):
    for j in range(N):
        S = []
        flag = True
        for k in range(j, j+5):
            if 0<=k<=N:
                S.append(dp[i][k])
            else:
                flag = False
                break
        if flag:
            S.sort()
            tmp = 0
            st = 1
            a = S.count(st)
            while S[-1]>st:
                tmp2 = (S[a]-st)//(5-a) + (1 if (S[a]-st)%(5-a) else 0)
                tmp+=tmp2
                st+=(5-a)* tmp2
                for idx in range(a, 5):
                    if S[idx]>st:
                        a = idx
                        break
            #print(S, tmp)
            ans = min(ans, tmp)
print(ans)



0