結果

問題 No.1370 置換門松列
ユーザー さかぽんさかぽん
提出日時 2021-02-18 13:21:41
言語 C#(csc)
(csc 3.9.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 953 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 107,640 KB
実行使用メモリ 40,392 KB
最終ジャッジ日時 2023-10-12 21:06:46
合計ジャッジ時間 6,431 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
21,708 KB
testcase_01 AC 57 ms
21,732 KB
testcase_02 AC 57 ms
21,588 KB
testcase_03 AC 63 ms
21,732 KB
testcase_04 AC 57 ms
21,576 KB
testcase_05 AC 63 ms
21,712 KB
testcase_06 AC 58 ms
23,576 KB
testcase_07 AC 63 ms
21,640 KB
testcase_08 AC 63 ms
23,796 KB
testcase_09 AC 57 ms
23,540 KB
testcase_10 WA -
testcase_11 AC 58 ms
23,552 KB
testcase_12 AC 57 ms
21,504 KB
testcase_13 AC 57 ms
21,476 KB
testcase_14 AC 57 ms
23,652 KB
testcase_15 AC 63 ms
21,600 KB
testcase_16 AC 57 ms
21,564 KB
testcase_17 AC 58 ms
23,480 KB
testcase_18 AC 57 ms
21,596 KB
testcase_19 AC 59 ms
21,564 KB
testcase_20 AC 56 ms
21,492 KB
testcase_21 AC 128 ms
38,300 KB
testcase_22 AC 93 ms
30,028 KB
testcase_23 AC 120 ms
37,444 KB
testcase_24 AC 84 ms
26,220 KB
testcase_25 AC 133 ms
40,392 KB
testcase_26 AC 129 ms
38,356 KB
testcase_27 AC 90 ms
29,332 KB
testcase_28 AC 89 ms
29,368 KB
testcase_29 AC 89 ms
24,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class E
{
	static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
	static (int, int) Read2() { var a = Read(); return (a[0], a[1]); }
	static void Main() => Console.WriteLine(Solve());
	static object Solve()
	{
		var (n, m) = Read2();
		var a = Read();
		Array.Reverse(a);

		var x = new int[m + 1];
		int c = 1 << 20, t = 1;

		if (a[0] == a[1]) return "No";
		x[a[0]] = c;
		x[a[1]] = c + t++;

		for (int i = 2; i < n; i++)
		{
			if (x[a[i]] == 0)
			{
				if (x[a[i - 2]] < x[a[i - 1]])
					x[a[i]] = c - t++;
				else
					x[a[i]] = c + t++;
			}
			else
			{
				if (!IsKadomatsu(x, a, i - 2)) return "No";
			}
		}

		return "Yes\n" + string.Join(" ", x.Skip(1).Select(v => v == 0 ? 1 : v));
	}

	static bool IsKadomatsu(int[] x, int[] a, int i) => x[a[i]] != x[a[i + 2]] && (x[a[i]] < x[a[i + 1]] && x[a[i + 1]] > x[a[i + 2]] || x[a[i]] > x[a[i + 1]] && x[a[i + 1]] < x[a[i + 2]]);
}
0