結果

問題 No.1370 置換門松列
ユーザー convexineqconvexineq
提出日時 2021-01-30 09:37:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 98,892 KB
最終ジャッジ日時 2024-09-14 19:24:09
合計ジャッジ時間 3,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
51,940 KB
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 40 ms
52,480 KB
testcase_14 AC 41 ms
51,712 KB
testcase_15 AC 41 ms
51,840 KB
testcase_16 AC 41 ms
52,224 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 41 ms
52,480 KB
testcase_19 AC 39 ms
51,712 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 129 ms
98,892 KB
testcase_22 AC 98 ms
97,128 KB
testcase_23 AC 126 ms
97,324 KB
testcase_24 AC 73 ms
91,264 KB
testcase_25 AC 156 ms
98,392 KB
testcase_26 AC 155 ms
98,600 KB
testcase_27 AC 97 ms
96,384 KB
testcase_28 AC 98 ms
96,128 KB
testcase_29 AC 82 ms
92,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
*a, = map(int,input().split())

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

g = [[] for _ in range(m+1)]
ind = [0]*(m+1)
for i in range(n-1):
    if i%2:
        g[a[i]].append(a[i+1])
        ind[a[i+1]] += 1
    else:
        g[a[i+1]].append(a[i])
        ind[a[i]] += 1
        
q = [i for i in range(m+1) if i and ind[i]==0]
ans = [0]*m
i = 1
while q:
    v = q.pop()
    ans[v-1] = i
    i += 1
    for c in g[v]:
        ind[c] -= 1
        if ind[c]==0:
            q.append(c)

if any(x for x in ind): print("No")
else:
    print("Yes")
    print(*ans)
0