結果
問題 | No.1373 Directed Operations |
ユーザー | izryt(趣味) |
提出日時 | 2021-02-06 11:47:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,912 bytes |
コンパイル時間 | 1,171 ms |
コンパイル使用メモリ | 120,244 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 18:44:50 |
合計ジャッジ時間 | 5,141 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 20 ms
5,376 KB |
testcase_04 | AC | 33 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 40 ms
5,376 KB |
testcase_10 | AC | 34 ms
5,376 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | AC | 33 ms
5,376 KB |
testcase_13 | AC | 6 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <climits> #include <iostream> #include <vector> #include <string> #include <sstream> #include <algorithm> #include <utility> #include <set> #include <map> #include <stack> #include <queue> #include <deque> #include <functional> using namespace std; #define fst first #define scd second #define PB push_back #define MP make_pair #define all(a) a.begin(),a.end() #define rall(a) a.rbegin(),a.rend() #define omajinai ios::sync_with_stdio(false);cin.tie(0) #define rep(i,x) for(int i=0;i<(int)(x);++i) #define rep1(i,x) for(int i=1;i<=(int)(x);++i) #define rrep(i,x) for(int i=(int)x-1;i>=0;--i) #define rrep1(i,x) for(int i=(int)x;i>=1;--i) using ll=long long; using ld=long double; using vi=vector<int>; using vvi=vector<vi>; using pii=pair<int, int>; using vpii=vector<pii>; template<class T,class U>ostream&operator<<(ostream&os,const pair<T,U>p){os<<"("<<p.fst<<", "<<p.scd<<")";return os;} template<class T>ostream&operator<<(ostream&os,const vector<T>v){rep(i,v.size()){if(i)os<<", ";os<<v[i];}return os;} template<typename T>T&max(T&a,T&b){if(a>=b)return a;return b;} template<typename T>T&min(T&a,T&b){if(a < b)return a;return b;} template<typename T>bool chmax(T&a,T b){if(a < b){a=b;return true;}return false;} template<typename T>bool chmin(T&a,T b){if(a > b){a=b;return true;}return false;} constexpr ll TEN(ll n){return n==0?1:10ll*TEN(n-1);} constexpr ll inf = TEN(9)+5; constexpr ll linf = 3*TEN(18); signed main() { int N; cin >> N; vector<pii> a(N-1); vi ans(N-1); rep(i, N-1) cin >> a[i].first, a[i].second = i; sort(all(a)); int mx = 0; rep(i, N-1) { int l = a[i].first; if (mx + 1 - l < 0) { cout << "NO\n"; return 0; } ans[a[i].second] = mx + 1 - l; mx++; } rep(i, N-1) printf("%d\n", ans[i]+1); }