結果

問題 No.1370 置換門松列
ユーザー 👑 NachiaNachia
提出日時 2021-01-29 22:33:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 207,368 KB
実行使用メモリ 9,220 KB
最終ジャッジ日時 2024-09-14 19:21:50
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,016 KB
testcase_01 AC 3 ms
6,016 KB
testcase_02 AC 3 ms
6,016 KB
testcase_03 AC 3 ms
6,016 KB
testcase_04 AC 4 ms
6,016 KB
testcase_05 AC 3 ms
6,144 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 3 ms
6,144 KB
testcase_08 AC 3 ms
6,144 KB
testcase_09 AC 3 ms
5,888 KB
testcase_10 AC 3 ms
6,144 KB
testcase_11 AC 3 ms
5,888 KB
testcase_12 AC 3 ms
5,760 KB
testcase_13 AC 3 ms
5,888 KB
testcase_14 AC 3 ms
6,016 KB
testcase_15 AC 3 ms
6,144 KB
testcase_16 AC 3 ms
6,016 KB
testcase_17 AC 4 ms
6,016 KB
testcase_18 AC 4 ms
6,016 KB
testcase_19 AC 4 ms
5,888 KB
testcase_20 AC 3 ms
6,016 KB
testcase_21 AC 31 ms
9,200 KB
testcase_22 AC 20 ms
8,064 KB
testcase_23 AC 30 ms
8,588 KB
testcase_24 AC 13 ms
6,796 KB
testcase_25 AC 39 ms
9,220 KB
testcase_26 AC 39 ms
9,204 KB
testcase_27 AC 16 ms
8,064 KB
testcase_28 AC 17 ms
8,192 KB
testcase_29 AC 15 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N,M;
int A[100001];

vector<int> E[100000];
int I[100000];
vector<int> V;
int ans[100000];

int main(){
  scanf("%d%d",&N,&M);
  rep(i,N){ scanf("%d",&A[i]); A[i]--; }
  rep(i,N-2) if(A[i]==A[i+2]){ printf("No\n"); return 0; }
  rep(i,M) I[i]=0;
  rep(i,N-1){
    if(i%2){ E[A[i+1]].push_back(A[i]); I[A[i]]++; }
    else{ E[A[i]].push_back(A[i+1]); I[A[i+1]]++; }
  }
  queue<int> Q; rep(i,M) if(I[i]==0) Q.push(i);
  while(Q.size()){
    int p=Q.front(); Q.pop();
    V.push_back(p);
    for(int e:E[p]) if(0==--I[e]) Q.push(e);
  }
  if(V.size()!=M){ printf("No\n"); return 0; }
  printf("Yes\n");
  rep(i,M) ans[V[i]]=i+1;
  rep(i,M){ if(i) printf(" "); printf("%d",ans[i]); } printf("\n");
  return 0;
}
0