結果

問題 No.1373 Directed Operations
ユーザー ttkkggwwttkkggww
提出日時 2021-02-05 21:51:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 217,824 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-07-02 12:23:40
合計ジャッジ時間 6,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 179 ms
10,368 KB
testcase_03 AC 18 ms
6,944 KB
testcase_04 AC 30 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 238 ms
10,240 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 24 ms
6,944 KB
testcase_09 AC 37 ms
6,940 KB
testcase_10 AC 30 ms
6,944 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 30 ms
6,944 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 241 ms
10,368 KB
testcase_15 AC 207 ms
9,344 KB
testcase_16 AC 231 ms
10,368 KB
testcase_17 AC 138 ms
8,576 KB
testcase_18 AC 80 ms
6,940 KB
testcase_19 AC 83 ms
6,944 KB
testcase_20 AC 125 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//#include<atcoder/all>
//using namespace atcoder;
using namespace std;
using ll = long long;

int main(){
	int n;
	cin >> n;
	vector<pair<int,int>> vpii(n-1);

	for(int i = 0;i<n-1;i++)cin >> vpii[i].first ,vpii[i].second=i;
	sort(vpii.begin(),vpii.end());
	for(int i = 0;i<n-1;i++){
		if(vpii[i].first>i+1){
			cout<<"NO"<<endl;
			return 0;
		}
	}
	map<pair<int,int>,int> ans;
	for(int i = 0;i<n-1;i++){
		ans[vpii[i]] = (i+2)-(vpii[i].first);
	}
	sort(vpii.begin(),vpii.end(),[](auto a,auto b){
			return a.second<b.second;
			});
	cout<<"YES"<<endl;
	for(int i = 0;i<n-1;i++){
		cout<<ans[vpii[i]]<<endl;
	}

}
0