結果
問題 | No.489 株に挑戦 |
ユーザー | konsin_tokage |
提出日時 | 2018-05-31 06:42:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 595 bytes |
コンパイル時間 | 643 ms |
コンパイル使用メモリ | 70,376 KB |
実行使用メモリ | 8,320 KB |
最終ジャッジ日時 | 2024-06-30 08:29:08 |
合計ジャッジ時間 | 2,824 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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 | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
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 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 72 ms
5,396 KB |
testcase_17 | AC | 6 ms
5,376 KB |
testcase_18 | AC | 31 ms
5,376 KB |
testcase_19 | AC | 31 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 56 ms
7,808 KB |
testcase_27 | AC | 42 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <set> using namespace std; int main(){ int n,d,K,m=0,j=0,k=0; cin>>n>>d>>K; vector<int> x(n); for(int &i:x) cin>>i; set<pair<int,int>> s; for(int i=0;i<=d;++i) s.insert({x[i],i}); for(int i=0;i<n;++i){ auto p = s.upper_bound({(--s.end())->first-1,n}); if(p->first-x[i]>m){ m=p->first-x[i]; j=i; k=p->second; } s.erase({x[i],i}); if(i+d+1<n) s.insert({x[i+d+1],i+d+1}); } cout<<m*K<<endl; if(m) cout<<j<<" "<<k<<endl; return 0; }