結果

問題 No.1370 置換門松列
ユーザー hongrockhongrock
提出日時 2021-01-29 22:04:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,538 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 172,696 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-09-14 19:19:54
合計ジャッジ時間 3,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define rep(i, a, n) for(int i=(a); i<(n); ++i)
#define per(i, a, n) for(int i=(a); i>(n); --i)
#define pb emplace_back
#define mp make_pair
#define clr(a, b) memset(a, b, sizeof(a))
#define all(x) (x).begin(),(x).end()
#define lowbit(x) (x & -x)
#define fi first
#define se second
#define lson o<<1
#define rson o<<1|1
#define gmid l[o]+r[o]>>1

using LL = long long;
using ULL = unsigned long long;
using pii = pair<int,int>;
using PLL = pair<LL, LL>;
using UI = unsigned int;

const int mod = 1e9 + 7;
const int inf = 0x3f3f3f3f;
const double EPS = 1e-8;
const double PI = acos(-1.0);

const int N = 1e5 + 10;

int n, m, a[N], x[N], deg[N];
vector<int> V[N];

bool ok(bool f){
	rep(i, 3, n+1){
		if(a[i] == a[i-2])	return 0;
	}
	rep(i, 1, m+1){
		V[i].clear();
		deg[i] = 0;
	}
	rep(i, 1, n){
		if(f){
			V[a[i]].pb(a[i+1]);
			++deg[a[i+1]];
		} else {
			V[a[i+1]].pb(a[i]);
			++deg[a[i]];
		}
		f ^= 1;
	}
	int v, cnt = 0;
	int val = 0;
	queue<int> Q;
	rep(i, 1, m+1){
		if(deg[i] == 0){
			Q.emplace(i);
		} else {
			x[i] = 0;
		}
	}
	while(!Q.empty()){
		v = Q.front(); Q.pop();
		++cnt;
		x[v] = ++val;

		for(int j : V[v]){
			if(--deg[j] == 0){
				Q.emplace(j);
			}
		}
	}

	return cnt == m;
}

int main(){
	scanf("%d %d", &n, &m);
	rep(i, 1, n+1)	scanf("%d", a+i);
	
	if(ok(0)){
		puts("Yes");
		rep(i, 1, m+1)	printf("%d%c", x[i], i==m?'\n':' ');
	} else if(ok(1)){
		puts("Yes");
		rep(i, 1, m+1)	printf("%d%c", x[i], i==m?'\n':' ');
	} else {
		puts("No");
	}

	return 0;
}
0