結果

問題 No.1373 Directed Operations
ユーザー elpheelphe
提出日時 2024-11-20 18:02:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 1,035 ms
コンパイル使用メモリ 83,464 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-20 18:02:19
合計ジャッジ時間 3,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 17 ms
6,820 KB
testcase_03 AC 10 ms
6,816 KB
testcase_04 AC 12 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 21 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 16 ms
6,816 KB
testcase_10 AC 14 ms
6,816 KB
testcase_11 AC 5 ms
6,816 KB
testcase_12 AC 14 ms
6,816 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 23 ms
6,820 KB
testcase_15 AC 19 ms
6,816 KB
testcase_16 AC 22 ms
6,816 KB
testcase_17 AC 14 ms
6,816 KB
testcase_18 AC 8 ms
6,820 KB
testcase_19 AC 9 ms
6,820 KB
testcase_20 AC 12 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	uint32_t N, i;
	cin >> N;
	vector<pair<uint32_t, uint32_t>> a(N - 1);
	for (i = 0; i != N - 1; ++i) cin >> a[i].first;
	for (i = 0; i != N - 1; ++i) a[i].second = i;

	vector<uint32_t> ans(N - 1);
	sort(a.begin(), a.end());
	for (i = 0; i != N - 1; ++i)
	{
		if (a[i].first >= i + 2)
		{
			cout << "NO\n";
			return 0;
		}

		ans[a[i].second] = i + 2 - a[i].first;
	}

	cout << "YES\n";
	for (i = 0; i != N - 1; ++i)
		cout << ans[i] << '\n';

	return 0;
}
0