結果
問題 | No.992 最長増加部分列の数え上げ |
ユーザー | knshnb |
提出日時 | 2020-02-14 23:27:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,452 bytes |
コンパイル時間 | 2,671 ms |
コンパイル使用メモリ | 210,224 KB |
実行使用メモリ | 16,648 KB |
最終ジャッジ日時 | 2024-10-06 13:24:27 |
合計ジャッジ時間 | 5,359 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
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 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include <bits/stdc++.h> // clang-format off using namespace std; using Int = long long; #define REP2(i, n) for (Int i = 0, max_i = (n); i < max_i; i++) #define REP3(i, a, b) for (Int i = (a), max_i = (b); i < max_i; i++) #define OVERLOAD2(_1, _2, _3, name, ...) name #define REP(...) OVERLOAD2(__VA_ARGS__, REP3, REP2)(__VA_ARGS__) struct SetupIO { SetupIO() { cin.tie(nullptr), ios::sync_with_stdio(false), cout << fixed << setprecision(13); } } setup_io; #ifndef _MY_DEBUG #define dump(...) #endif // clang-format on /** * author: knshnb * created: Fri Feb 14 23:02:23 JST 2020 **/ using pii = pair<Int, Int>; signed main() { Int n; cin >> n; vector<Int> a(n); REP(i, n) cin >> a[i]; vector<Int> dp(n, 1e18); vector<vector<pii>> g(n); for (Int x : a) { Int j = lower_bound(dp.begin(), dp.end(), x) - dp.begin(); dp[j] = x; Int cnt = 0; if (j > 0) { auto it = upper_bound(g[j - 1].begin(), g[j - 1].end(), pii(-x, 1e10)); Int minus = it == g[j - 1].begin() ? 0 : prev(it)->second; int plus = g[j - 1].empty() ? 0 : g[j - 1].back().second; cnt += plus - minus; } else { cnt = 1; } Int prv = g[j].empty() ? 0 : g[j].back().second; g[j].push_back({-x, cnt + prv}); } Int idx = lower_bound(dp.begin(), dp.end(), 1e18) - dp.begin(); cout << g[idx - 1].back().second << endl; }