結果
問題 | No.992 最長増加部分列の数え上げ |
ユーザー | face4 |
提出日時 | 2020-02-19 10:19:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 169 ms / 2,000 ms |
コード長 | 2,240 bytes |
コンパイル時間 | 1,068 ms |
コンパイル使用メモリ | 83,144 KB |
実行使用メモリ | 9,804 KB |
最終ジャッジ日時 | 2024-10-07 19:30:25 |
合計ジャッジ時間 | 9,286 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 63 ms
6,220 KB |
testcase_05 | AC | 47 ms
5,248 KB |
testcase_06 | AC | 77 ms
6,476 KB |
testcase_07 | AC | 56 ms
6,216 KB |
testcase_08 | AC | 30 ms
5,248 KB |
testcase_09 | AC | 58 ms
6,220 KB |
testcase_10 | AC | 74 ms
6,348 KB |
testcase_11 | AC | 95 ms
6,732 KB |
testcase_12 | AC | 20 ms
5,248 KB |
testcase_13 | AC | 53 ms
6,092 KB |
testcase_14 | AC | 56 ms
6,220 KB |
testcase_15 | AC | 21 ms
5,248 KB |
testcase_16 | AC | 151 ms
9,552 KB |
testcase_17 | AC | 29 ms
5,248 KB |
testcase_18 | AC | 52 ms
6,188 KB |
testcase_19 | AC | 97 ms
6,736 KB |
testcase_20 | AC | 165 ms
9,660 KB |
testcase_21 | AC | 167 ms
9,784 KB |
testcase_22 | AC | 162 ms
9,648 KB |
testcase_23 | AC | 163 ms
9,620 KB |
testcase_24 | AC | 164 ms
9,740 KB |
testcase_25 | AC | 169 ms
9,712 KB |
testcase_26 | AC | 164 ms
9,676 KB |
testcase_27 | AC | 166 ms
9,680 KB |
testcase_28 | AC | 165 ms
9,756 KB |
testcase_29 | AC | 165 ms
9,708 KB |
testcase_30 | AC | 158 ms
9,692 KB |
testcase_31 | AC | 159 ms
9,624 KB |
testcase_32 | AC | 157 ms
9,696 KB |
testcase_33 | AC | 153 ms
9,676 KB |
testcase_34 | AC | 157 ms
9,692 KB |
testcase_35 | AC | 166 ms
9,712 KB |
testcase_36 | AC | 165 ms
9,680 KB |
testcase_37 | AC | 162 ms
9,676 KB |
testcase_38 | AC | 165 ms
9,804 KB |
testcase_39 | AC | 166 ms
9,732 KB |
testcase_40 | AC | 157 ms
9,620 KB |
testcase_41 | AC | 156 ms
9,624 KB |
testcase_42 | AC | 158 ms
9,736 KB |
testcase_43 | AC | 152 ms
9,676 KB |
testcase_44 | AC | 156 ms
9,672 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; typedef long long ll; const int mod = 1000000007; template<typename T, typename F> struct Seg{ private: vector<T> node; int n; F f; T def; public: Seg(int siz, T d, F f) : def(d), f(f) { n = 1; while(n < siz) n *= 2; node.resize(2*n-1, def); } Seg(vector<T> v, T d, F f) : def(d), f(f){ n = 1; while(n < v.size()) n *= 2; node.resize(2*n-1); for(int i = 0; i < v.size(); i++) node[n-1+i] = v[i]; for(int i = n-2; i >= 0; i--) node[i] = f(node[2*i+1], node[2*i+2]); } void update(int x, T val){ x += n-1; node[x] = val; /* ! */ while(x){ x = (x-1)/2; node[x] = f(node[2*x+1], node[2*x+2]); } } T query(int a, int b){ int L = a+n-1, R = b+n-1; T ret = def; while(L < R){ if((R&1) == 0) ret = f(ret, node[--R]); if((L&1) == 0) ret = f(ret, node[L++]); L >>= 1, R >>= 1; } return ret; } }; struct Box{ int length, count; bool operator<(const Box other) const{ if(length != other.length) return length < other.length; if(count != other.count) return count < other.count; return this; } }; int main(){ int n; cin >> n; vector<pair<int,int>> vp; for(int i = 0; i < n; i++){ int x; cin >> x; vp.push_back({x, -i}); } sort(vp.begin(), vp.end()); vector<int> a(n); for(int i = 0; i < n; i++){ a[-vp[i].second] = i; } auto f = [](Box a, Box b){ if(a.length < b.length){ return b; }else if(a.length > b.length){ return a; }else if(a.length == b.length){ (a.count += b.count) %= mod; return a; } return a; }; Seg<Box, decltype(f)> argmax(n+1, {0,0}, f); argmax.update(0, {0,1}); for(int i = 0; i < n; i++){ int pos = -vp[i].second+1; Box now = argmax.query(0, pos); now.length++; argmax.update(pos, now); } cout << argmax.query(1, n+1).count << endl; return 0; }