結果

問題 No.2463 ストレートフラッシュ
ユーザー mkawa2mkawa2
提出日時 2023-09-08 22:01:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 1,250 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 78,932 KB
最終ジャッジ日時 2024-06-26 15:01:38
合計ジャッジ時間 5,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 46 ms
60,032 KB
testcase_04 AC 55 ms
65,152 KB
testcase_05 AC 59 ms
66,176 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 47 ms
61,312 KB
testcase_08 AC 54 ms
65,152 KB
testcase_09 AC 69 ms
72,320 KB
testcase_10 AC 52 ms
62,464 KB
testcase_11 AC 42 ms
52,864 KB
testcase_12 AC 62 ms
66,304 KB
testcase_13 AC 208 ms
78,280 KB
testcase_14 AC 229 ms
78,208 KB
testcase_15 AC 214 ms
77,952 KB
testcase_16 AC 232 ms
78,464 KB
testcase_17 AC 255 ms
78,208 KB
testcase_18 AC 281 ms
78,664 KB
testcase_19 AC 270 ms
78,336 KB
testcase_20 AC 273 ms
78,464 KB
testcase_21 AC 229 ms
78,464 KB
testcase_22 AC 248 ms
78,764 KB
testcase_23 AC 260 ms
78,932 KB
testcase_24 AC 259 ms
78,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(1000005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

def solve(b,s):
    pp=[]
    for a in range(s,s+5):
        if a==n:a=0
        pp.append(pos[b][a])
    pp.sort(reverse=True)
    now=0
    cnt=0
    while pp:
        d=len(pp)
        p=pp.pop()
        c=(p+1-now+d-1)//d
        cnt+=c
        now+=c*d
        while pp and pp[-1]<now:p=pp.pop()
    return cnt-1

n,m=LI()
pos=[[0]*n for _ in range(m)]
for i in range(n*m):
    a,b=LI1()
    pos[b][a]=i
ans=inf
for b in range(m):
    for a in range(n-3):
        ans=min(ans,solve(b,a))

print(ans)
0