結果

問題 No.1370 置換門松列
ユーザー GER_chenGER_chen
提出日時 2021-01-30 13:26:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,171 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 116,864 KB
最終ジャッジ日時 2024-09-14 19:24:18
合計ジャッジ時間 4,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,172 KB
testcase_01 AC 43 ms
54,868 KB
testcase_02 AC 42 ms
54,600 KB
testcase_03 AC 43 ms
54,248 KB
testcase_04 AC 44 ms
53,812 KB
testcase_05 AC 45 ms
55,256 KB
testcase_06 AC 43 ms
54,000 KB
testcase_07 AC 43 ms
54,988 KB
testcase_08 AC 44 ms
54,256 KB
testcase_09 AC 43 ms
54,856 KB
testcase_10 AC 42 ms
54,604 KB
testcase_11 AC 42 ms
55,012 KB
testcase_12 AC 44 ms
54,700 KB
testcase_13 AC 41 ms
54,944 KB
testcase_14 AC 43 ms
55,172 KB
testcase_15 AC 42 ms
54,500 KB
testcase_16 AC 42 ms
55,664 KB
testcase_17 AC 42 ms
54,716 KB
testcase_18 AC 42 ms
55,048 KB
testcase_19 AC 42 ms
54,936 KB
testcase_20 AC 42 ms
55,440 KB
testcase_21 AC 180 ms
115,080 KB
testcase_22 AC 130 ms
102,160 KB
testcase_23 AC 156 ms
102,548 KB
testcase_24 AC 84 ms
88,568 KB
testcase_25 AC 268 ms
116,368 KB
testcase_26 AC 270 ms
116,864 KB
testcase_27 AC 122 ms
95,224 KB
testcase_28 AC 130 ms
95,188 KB
testcase_29 AC 101 ms
89,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#1370
import sys;input = lambda: sys.stdin.readline().rstrip()
#import numpy as np
#import heapq
from collections import deque
def topological_sort(In, Out):
    """
    In: 入力してくる頂点集合
    Out: 出力先の頂点集合
    """
    dq = deque()
    L = []
    for i, I in enumerate(In):
        if not I:
            dq.append(i)
    while dq:
        v = dq.popleft()
        L.append(v)
        for w in Out[v]:
            In[w].remove(v)
            if not In[w]:
                dq.append(w)
    if len(L) < len(In):
        return False
    return L

# = input()
# = int(input())
n, m = map(int,input().split())
A = list(map(lambda x: int(x)-1,input().split()))

for i in range(n-2):
    if len(set(A[i:i+3])) != 3:
        print('No')
        exit()

In, Out = [set() for _ in range(m)], [set() for _ in range(m)]
for i in range(n-1):
    if i&1:
        In[A[i]].add(A[i+1])
        Out[A[i+1]].add(A[i])
    else:
        In[A[i+1]].add(A[i])
        Out[A[i]].add(A[i+1])

ts = topological_sort(In, Out)

if not ts:
    print('No')
else:
    print('Yes')
    X = [None]*m
    for i in range(m):
        X[ts[i]] = i+1
    print(*X, sep = ' ')
0