結果
問題 | No.489 株に挑戦 |
ユーザー | noynote |
提出日時 | 2017-02-25 10:50:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,328 bytes |
コンパイル時間 | 1,429 ms |
コンパイル使用メモリ | 159,600 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2024-06-11 14:54:27 |
合計ジャッジ時間 | 3,399 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
5,760 KB |
testcase_01 | AC | 28 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 47 ms
5,888 KB |
testcase_17 | AC | 7 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 52 ms
5,888 KB |
testcase_21 | AC | 13 ms
5,376 KB |
testcase_22 | AC | 5 ms
5,376 KB |
testcase_23 | AC | 28 ms
5,376 KB |
testcase_24 | AC | 57 ms
5,760 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 46 ms
5,760 KB |
testcase_27 | AC | 59 ms
5,888 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 57 ms
5,888 KB |
testcase_31 | AC | 58 ms
5,632 KB |
testcase_32 | AC | 31 ms
5,376 KB |
testcase_33 | AC | 57 ms
5,888 KB |
testcase_34 | AC | 50 ms
5,888 KB |
testcase_35 | AC | 20 ms
5,376 KB |
testcase_36 | AC | 8 ms
5,376 KB |
testcase_37 | AC | 28 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> #define range(i,a,b) for(int i = (a); i < (b); i++) #define rep(i,b) for(int i = 0; i < (b); i++) #define all(a) (a).begin(), (a).end() #define show(x) cerr << #x << " = " << (x) << endl; #define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl; const int INF = 2000000000; using namespace std; const int MAX_N = 1 << 17; //セグメントツリーを持つ配列 int n; pair<int, int> dat[2 * MAX_N - 1]; void init(int n_){ n = 1; while(n < n_) n *= 2; rep(i,2 * n - 1) dat[i].first = 0; } void update(int k, int a, int b){ //葉の節点 k += n - 1; dat[k].first = a; dat[k].second = b; //登りながら更新 while(k > 0){ k = (k - 1) / 2; if(dat[k * 2 + 1].first > dat[k * 2 + 2].first){ dat[k] = dat[k * 2 + 1]; }else if(dat[k * 2 + 1].first < dat[k * 2 + 2].first){ dat[k] = dat[k * 2 + 2]; } } } //[a, b)の最小値を求める //query(a, b, 0, 0, n) pair<int, int> query(int a, int b, int k, int l, int r){ //cout << a << ' ' << b << ' ' << k << ' ' << l << ' ' << r << endl; //[a, b) と[l, r)が交差しなければ、INT_MAX if(r <= a || b <= l) return make_pair(0,-1); //[a,b)が[l,r)を完全に含んでいれば、この節点の値 if(a <= l && r <= b) return dat[k]; else{ //そうでなければ、2つのこの最小値 pair<int, int> vl = query(a, b, k * 2 + 1, l, ( l + r) / 2); pair<int, int> vr = query(a, b, k * 2 + 2, (l + r) / 2, r); if(vl.first > vr.first) return vl; else return vr; } } int main(){ int nn, d, k; int x[100005]; cin >> nn >> d >> k; init(nn); rep(i,nn){ cin >> x[i]; update(i,x[i],i); } long long maxi = 0; pair<int, int> day; rep(i,nn){ pair<int, int> p; int dif; p = query(i,min(i + d + 1,n), 0, 0, n); //show(i + d) show(p.second) dif = p.first - x[i]; if(dif > maxi){ //show(i) cout << p.first << ' ' << p.second << endl; maxi = dif; day.first = i; day.second = p.second; } } cout << k * maxi << endl; if(k * maxi > 0) cout << day.first << ' ' << day.second << endl; }