結果
問題 | No.992 最長増加部分列の数え上げ |
ユーザー | Plan8 |
提出日時 | 2020-05-05 16:41:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,602 bytes |
コンパイル時間 | 2,368 ms |
コンパイル使用メモリ | 217,652 KB |
実行使用メモリ | 716,636 KB |
最終ジャッジ日時 | 2024-06-26 21:08:04 |
合計ジャッジ時間 | 30,951 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 411 ms
175,228 KB |
testcase_05 | AC | 265 ms
112,356 KB |
testcase_06 | AC | 555 ms
238,888 KB |
testcase_07 | AC | 352 ms
150,308 KB |
testcase_08 | AC | 141 ms
59,484 KB |
testcase_09 | AC | 362 ms
154,604 KB |
testcase_10 | AC | 549 ms
235,312 KB |
testcase_11 | AC | 764 ms
332,032 KB |
testcase_12 | AC | 84 ms
35,584 KB |
testcase_13 | AC | 331 ms
141,128 KB |
testcase_14 | AC | 335 ms
142,692 KB |
testcase_15 | AC | 86 ms
36,224 KB |
testcase_16 | MLE | - |
testcase_17 | AC | 143 ms
60,380 KB |
testcase_18 | AC | 320 ms
136,484 KB |
testcase_19 | AC | 746 ms
323,996 KB |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | AC | 148 ms
26,944 KB |
testcase_31 | AC | 147 ms
26,916 KB |
testcase_32 | AC | 147 ms
26,936 KB |
testcase_33 | AC | 145 ms
26,904 KB |
testcase_34 | AC | 144 ms
26,876 KB |
testcase_35 | AC | 144 ms
27,108 KB |
testcase_36 | AC | 133 ms
26,940 KB |
testcase_37 | AC | 143 ms
26,964 KB |
testcase_38 | AC | 153 ms
26,996 KB |
testcase_39 | AC | 130 ms
26,980 KB |
testcase_40 | AC | 143 ms
27,480 KB |
testcase_41 | AC | 146 ms
27,836 KB |
testcase_42 | AC | 146 ms
27,560 KB |
testcase_43 | AC | 144 ms
27,808 KB |
testcase_44 | AC | 146 ms
27,952 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;} template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();} typedef long long ll; typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<long long> VL; typedef vector<vector<long long>> VVL; typedef vector<string> VS; typedef pair<int, int> P; typedef tuple<int,int,int> tpl; #define ALL(a) (a).begin(),(a).end() #define SORT(c) sort((c).begin(),(c).end()) #define REVERSE(c) reverse((c).begin(),(c).end()) #define LB(a,x) lower_bound((a).begin(), (a).end(), x) - (a).begin() #define UB(a,x) upper_bound((a).begin(), (a).end(), x) - (a).begin() #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define RFOR(i,a,b) for(int i=(a)-1;i>=(b);--i) #define RREP(i,n) RFOR(i,n,0) #define en "\n" constexpr double EPS = 1e-9; constexpr double PI = 3.141592653589793238462643383279; constexpr int INF = 2147483647; constexpr long long LINF = 1LL<<60; constexpr long long MOD = 1000000007; // 998244353 #define dump(x) cerr << #x << " = " << (x) << endl; #define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<typename T> struct BIT{ using Func = function<T(T, T)>; int n; vector<T> node; T init_v; Func func; public: BIT(int N, Func _func, T _init_v) { n = N + 1; init_v = _init_v; func = _func; node.resize(n, init_v); for(int i=1; i<n; i++) if((i+(i&-i)) < n) node[i+(i&-i)] = func(node[i+(i&-i)], node[i]); } BIT() {} void add(int pos, T v) { // 1-indexed if(pos == 0) return; while(pos < n){ node[pos] = func(node[pos], v); pos += pos & -pos; } } T sum(int pos){ // 1-indexed T res = init_v; while(pos > 0){ res = func(res, node[pos]); pos = pos & (pos-1); } return res; } T get(int pos){ // 1-indexed return node[pos]; } }; void compress(vector<int> &v){ int N = v.size(), mn = 1000000000; vector<pair<int,int>> a(N); for(int i=0; i<N; ++i){ a[i].first = v[i]; a[i].second = i; mn = min(mn, v[i]); } sort(a.begin(), a.end()); int prev = mn-1, n = -1; for(int i=0; i<N; ++i){ if(a[i].first == prev) v[a[i].second] = n; else{ n++; prev = a[i].first; v[a[i].second] = n; } } } int main(void){ int N; cin >> N; VI A(N); REP(i,N) cin >> A[i]; compress(A); VI dp, len(N), mx(N+1,0); int maxlen = 0; REP(i,N){ int t = LB(dp, A[i]); if(t < dp.size()) chmin(dp[t], A[i]); else dp.push_back(A[i]); len[i] = t+1; chmax(mx[len[i]], A[i]+1); chmax(maxlen, len[i]); } vector<BIT<int>> v(N+1); REP(i,N+1) v[i] = BIT<int>(mx[i], [](int a, int b){return (a+b)%MOD;}, 0); REP(i,N){ int idx = min(v[len[i]-1].n-1, A[i]); ll n = len[i]>1 ? v[len[i]-1].sum(idx) : 1; v[len[i]].add(A[i]+1, n); } ll ans = v[maxlen].sum(mx[maxlen]); cout << ans << en; return 0; }