結果

問題 No.1373 Directed Operations
ユーザー RheoTommyRheoTommy
提出日時 2021-02-05 22:32:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 211,356 KB
実行使用メモリ 10,196 KB
最終ジャッジ日時 2024-07-02 13:07:51
合計ジャッジ時間 4,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 142 ms
8,336 KB
testcase_03 AC 19 ms
7,040 KB
testcase_04 AC 32 ms
7,168 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 179 ms
10,196 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 19 ms
6,944 KB
testcase_09 AC 41 ms
9,984 KB
testcase_10 AC 32 ms
7,680 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 31 ms
6,944 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 173 ms
8,960 KB
testcase_15 AC 144 ms
8,192 KB
testcase_16 AC 171 ms
8,832 KB
testcase_17 AC 110 ms
7,512 KB
testcase_18 AC 64 ms
6,944 KB
testcase_19 AC 70 ms
6,940 KB
testcase_20 AC 97 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (int) n; i++)

using ll = long long;
using namespace std;

const long long INF = 1ll << 60;

int main() {
    ll n;
    cin >> n;
    vector<ll> a(n - 1, 0);
    rep(i, n - 1) cin >> a[i];
    vector<ll> unsorted = a;
    sort(a.begin(), a.end());
    
    ll current = 1;
    vector<vector<ll>> log(n + 1);
    rep(i, n - 1) {
        ll j = current + 1 - a[i];
        if (j >= 1) {
            log[a[i]].push_back(j);
            current++;
        } else {
            cout << "NO" << endl;
            return 0;
        }
    }
    
    cout << "YES" << endl;
    for (auto ai:unsorted) {
        cout << log[ai].back() << endl;
        log[ai].pop_back();
    }
}
0