結果
問題 | No.489 株に挑戦 |
ユーザー | こる |
提出日時 | 2017-02-25 00:21:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,973 bytes |
コンパイル時間 | 921 ms |
コンパイル使用メモリ | 86,920 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-11 00:10:30 |
合計ジャッジ時間 | 5,270 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 17 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 23 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 14 ms
5,376 KB |
testcase_19 | AC | 11 ms
5,376 KB |
testcase_20 | AC | 28 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 30 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 33 ms
5,376 KB |
testcase_31 | AC | 28 ms
5,376 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | WA | - |
ソースコード
#include<iostream> #include<string> #include<vector> #include<set> #include<algorithm> #include<queue> #include<functional> #include<numeric> #include<sstream> #include<math.h> #include <iomanip> #define ll long long #define PLL pair<ll,ll> #define VS vector<string> #define VL vector<ll> #define VB vector<bool> #define VPLL vector<pair<ll,ll> > #define VVL vector<vector<ll> > #define VVVL vector<vector<vector<ll> > > #define VVB vector<vector<bool> > #define rep(i,a) for (ll i=0;i<a;i++) #define nrep(i,n,a) for (ll i=n;i<a;i++) #define mrep(i,a) for(ll i=a;i>=0;i--) #define INF 1000000000000000000 #define PI 3.141592653589793238 #define vmin(vec) *std::min_element(vec.begin(),vec.end()) #define vmax(vec) *std::max_element(vec.begin(),vec.end()) #define vsum(vec) std::accumulate(vec.begin(),vec.end(),0LL) #define ksort(vec) sort(vec.begin(), vec.end(), greater<ll>()) #define ssort(vec) (vec.begin(),vec.end()) #define VPLLsort(vec) sort(vec.begin(), vec.end(),[](PLL &a, PLL &b){ return a.first < b.first; }); #define LTS(n) to_string(n) #define STL(str) stoll(str) using namespace std; int main() { ll n, d, k; cin >> n >> d >> k; VL x(n); rep(i, n) cin >> x[i]; ll maxi = -1; ll mini_index = 0; PLL ans; ans.first = 0; ans.second = 0; nrep(i, 1, n){ if (maxi < x[i] - x[ans.first] && i - ans.first <= d){ maxi = x[i] - x[ans.first]; ans.second = i; } if (maxi < x[i] - x[ans.first] && i - ans.first>d){ //cout << "a" <<" "<<i<< endl; mini_index = i; rep(ii, d) mini_index = min(x[mini_index], x[i - ii]); if (x[i] - x[mini_index] > maxi){ maxi = x[i] - x[mini_index]; ans.first = mini_index; ans.second = i; } } if (x[ans.first]>x[i]){ ans.first = i; } }if (maxi <= 0){ cout << 0 << endl; } else{ mrep(i, ans.first){ if (ans.second - i>d) break; if (x[i] == x[ans.first]) ans.first = i; } cout << maxi*k << endl; cout << ans.first << " " << ans.second << endl; } return 0; }