結果

問題 No.1373 Directed Operations
ユーザー Example0911Example0911
提出日時 2021-02-05 21:36:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 209,532 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-02 11:47:27
合計ジャッジ時間 5,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 165 ms
10,880 KB
testcase_03 AC 37 ms
11,008 KB
testcase_04 AC 40 ms
10,880 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 177 ms
11,008 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 21 ms
5,376 KB
testcase_09 AC 53 ms
10,880 KB
testcase_10 AC 42 ms
9,856 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 40 ms
9,728 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 183 ms
11,008 KB
testcase_15 AC 163 ms
9,984 KB
testcase_16 AC 190 ms
10,880 KB
testcase_17 AC 121 ms
9,088 KB
testcase_18 AC 74 ms
6,784 KB
testcase_19 AC 69 ms
6,272 KB
testcase_20 AC 97 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = 998244353;

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	ll N; cin >> N;
	vector<ll>a(N - 1); for (int i = 0; i < N - 1; i++)cin >> a[i];
	vector<ll>ans(N - 1, -1);
	set<P>st;
	for (int i = 0; i < N - 1; i++) {
		st.insert({ a[i], i });
	}
	for (int i = 0; i < N - 1 ; i++) {
		auto idx = st.upper_bound({ i + 2, -INF });
		if (idx == st.begin()) {
			
			cout << "NO" << endl; return 0;
		}
		idx--;
		P tmp = *idx;
		ans[tmp.second] = i + 2 - tmp.first;
		st.erase(idx);
		
	}
	cout << "YES" << endl;
	for (int i = 0; i < N - 1; i++) {
		cout << ans[i] << endl;
	}

	return 0;
}
0