結果
問題 | No.930 数列圧縮 |
ユーザー | legosuke |
提出日時 | 2019-11-23 12:50:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,260 bytes |
コンパイル時間 | 2,202 ms |
コンパイル使用メモリ | 204,084 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-11 06:55:08 |
合計ジャッジ時間 | 7,103 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 19 ms
6,008 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 19 ms
6,012 KB |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | WA | - |
ソースコード
#include <bits/stdc++.h> #define endl '\n' #define int long long #define lint long long #define pii pair<int, int> #define FOR(i, a, b) for(int i = (a); i < (b); ++i) #define REP(i, n) FOR(i, 0, n) #define ALL(v) (v).begin(), (v).end() #define SZ(v) ((int)v.size()) #define ZERO(a) memset(a, 0, sizeof(a)) #define MINUS(a) memset(a, 0xff, sizeof(a)) #define MINF(a) memset(a, 0x3f, sizeof(a)) #define POW(n) (1LL << (n)) #define POPCNT(n) (__builtin_popcount(n)) #define IN(i,a,b) (a <= i && i <= b) using namespace std; template <typename T> inline bool CHMIN(T& a,T b) { if(a>b) { a=b; return 1; } return 0; } template <typename T> inline bool CHMAX(T& a,T b) { if(a<b) { a=b; return 1; } return 0; } template <typename T> inline void SORT(T& a) { sort(ALL(a)); } template <typename T> inline void REV(T& a) { reverse(ALL(a)); } template <typename T> inline void UNI(T& a) { sort(ALL(a)); a.erase(unique(ALL(a)),a.end()); } template <typename T> inline T LB(vector<T>& v, T a) { return *lower_bound(ALL(v),a); } template <typename T> inline int LBP(vector<T>& v, T a) { return lower_bound(ALL(v),a) - v.begin(); } template <typename T> inline T UB(vector<T>& v, T a) { return *upper_bound(ALL(v),a); } template <typename T> inline int UBP(vector<T>& v, T a) { return upper_bound(ALL(v),a) - v.begin(); } template <typename T1, typename T2> ostream& operator<< (ostream& os, const pair<T1,T2>& p) { os << p.first << " " << p.second; return os; } template <typename T1, typename T2> istream& operator>> (istream& is, pair<T1,T2>& p) { is >> p.first >> p.second; return is; } template <typename T> ostream& operator<< (ostream& os, const vector<T>& v) { REP(i,v.size()) { if (i) os << " "; os << v[i]; } return os; } template <typename T> istream& operator>> (istream& is, vector<T>& v) { for(T& in : v) is >> in; return is; } template <typename T = int> vector<T> make_v(size_t a) { return vector<T>(a); } template <typename T, typename... Ts> auto make_v(size_t a, Ts... ts) { return vector<decltype(make_v<T>(ts...))>(a,make_v<T>(ts...)); } template <typename T, typename V> typename enable_if<is_class<T>::value == 0>::type fill_v(T &t, const V &v) { t = v; } template <typename T, typename V> typename enable_if<is_class<T>::value != 0>::type fill_v(T &t, const V &v) { for(auto &e : t) fill_v(e, v); } const lint MOD = 1000000007; const lint INF = 0x3f3f3f3f3f3f3f3f; const double PI = 3.14159265358979323846; const double EPS = 1e-10; int N; int a[100010]; int p[100010]; void _main() { cin >> N; REP(i, N) { cin >> a[i]; a[i]--; p[a[i]] = i; } vector<int> ans; for (int i = N - 1; i >= 0; --i) { if (p[i] == N - 1) { if (SZ(ans) == N - 1) { cout << "No" << endl; return; } continue; } else { ans.push_back(i + 1); } } cout << "Yes" << endl; cout << ans << endl; } signed main(signed argc, char **argv) { if (argc > 1) { if (strchr(argv[1], 'i')) freopen("input.txt", "r", stdin); if (strchr(argv[1], 'o')) freopen("output.txt", "w", stdout); } ios::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(10); _main(); return 0; }