結果

問題 No.1373 Directed Operations
ユーザー wotsushiwotsushi
提出日時 2020-11-04 22:09:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 210,120 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-07-22 10:26:53
合計ジャッジ時間 4,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 168 ms
8,320 KB
testcase_03 AC 48 ms
8,448 KB
testcase_04 AC 24 ms
8,448 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 216 ms
8,448 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 21 ms
6,944 KB
testcase_09 AC 89 ms
8,320 KB
testcase_10 AC 73 ms
7,552 KB
testcase_11 AC 16 ms
6,940 KB
testcase_12 AC 57 ms
7,552 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 188 ms
8,320 KB
testcase_15 AC 173 ms
7,680 KB
testcase_16 AC 188 ms
8,448 KB
testcase_17 AC 132 ms
7,076 KB
testcase_18 AC 78 ms
6,944 KB
testcase_19 AC 80 ms
6,944 KB
testcase_20 AC 113 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// 各操作を先読みしない解法
// 各操作で選ぶxをなるべく小さくする貪欲法

int main() {
  int N;
  cin >> N;
  set<int> S;
  for (int i = 2; i <= N; ++i) {
    S.insert(i);
  }
  vector<int> x(N);
  for (int i = 1; i <= N - 1; ++i) {
    int a;
    cin >> a;
    auto j = S.lower_bound(a + 1);
    if (j == S.end()) {
      cout << "NO" << endl;
      return 0;
    }
    x[i] = *j - a;
    S.erase(*j);
  }
  cout << "YES" << endl;
  for (int i = 1; i <= N - 1; ++i) {
    cout << x[i] << endl;
  }
}
0