結果
問題 | No.1373 Directed Operations |
ユーザー | wotsushi |
提出日時 | 2020-11-04 22:11:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 618 bytes |
コンパイル時間 | 2,367 ms |
コンパイル使用メモリ | 203,372 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-22 10:27:30 |
合計ジャッジ時間 | 5,661 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; // 各操作を先読みしない解法 // O(N^2) がTLEになるかチェック int main() { int N; cin >> N; vector<bool> used(N + 1); vector<int> x(N); for (int i = 1; i <= N - 1; ++i) { int a; cin >> a; bool ok = false; for (int j = a + 1; j <= N; ++j) { if (not used[j]) { x[i] = j - a; used[j] = true; ok = true; break; } } if (not ok) { cout << "NO" << endl; return 0; } } cout << "YES" << endl; for (int i = 1; i <= N - 1; ++i) { cout << x[i] << endl; } }