結果

問題 No.1370 置換門松列
ユーザー mkawa2mkawa2
提出日時 2022-06-24 08:24:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 100,440 KB
最終ジャッジ日時 2024-09-14 19:27:41
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 39 ms
52,608 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 39 ms
52,224 KB
testcase_17 AC 39 ms
52,608 KB
testcase_18 AC 40 ms
52,352 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 40 ms
52,480 KB
testcase_21 AC 122 ms
99,200 KB
testcase_22 AC 94 ms
95,104 KB
testcase_23 AC 121 ms
100,440 KB
testcase_24 AC 67 ms
87,040 KB
testcase_25 AC 144 ms
99,368 KB
testcase_26 AC 146 ms
99,336 KB
testcase_27 AC 92 ms
94,952 KB
testcase_28 AC 94 ms
95,804 KB
testcase_29 AC 70 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
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 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

n, m = LI()
aa = LI1()

for i in range(n-2):
    if aa[i] == aa[i+2]:
        print("No")
        exit()

to = [[] for _ in range(m)]
deg = [0]*m

for i in range(n-1):
    u, v = aa[i], aa[i+1]
    if i & 1:
        to[v].append(u)
        deg[u] += 1
    else:
        to[u].append(v)
        deg[v] += 1
# pDB(to)

st = [u for u in range(m) if deg[u] == 0]
uu = []
while st:
    u = st.pop()
    uu.append(u)
    for v in to[u]:
        deg[v] -= 1
        if deg[v] == 0:
            st.append(v)

if len(uu) == m:
    print("Yes")
    ans = [0]*m
    for i, u in enumerate(uu):
        ans[u] = i+1
    print(*ans)
    # xx=[ans[a] for a in aa]
    # pDB(*xx)
else:
    print("No")
0