結果
問題 | No.489 株に挑戦 |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2017-02-24 23:28:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,109 bytes |
コンパイル時間 | 1,554 ms |
コンパイル使用メモリ | 157,428 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 23:22:37 |
合計ジャッジ時間 | 3,890 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | RE | - |
testcase_27 | AC | 28 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 25 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | RE | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vint; typedef pair<int,int> pint; typedef vector<pint> vpint; #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) #define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++) #define all(v) (v).begin(),(v).end() #define pb push_back #define mp make_pair #define fi first #define se second #define chmax(a, b) a = (((a)<(b)) ? (b) : (a)) #define chmin(a, b) a = (((a)>(b)) ? (b) : (a)) const int MOD = 1e9 + 7; const int INF = 1e9; const ll INFF = 1e18; ll n, d, k; ll x[100010]; int main(void){ cin >> n >> d >> k; rep(i, n) cin >> x[i]; // rep(i, n - 1) sa[i] = x[i + 1] - x[i]; int l = 0, r = 0; ll ma = 0; int ansl = 0, ansr = 0; while(l < n && r < n){ if(x[r] < x[l]) l = r; // printf("%d %d\n", l, r); while(r - l <= d - 1){ r++; if(ma < x[r] - x[l]){ ma = x[r] - x[l]; ansl = l, ansr = r; } } if(r - l == d)l++; if(l > r)r = l; } printf("%lld\n", ma * k); if(ma == 0) return 0; printf("%d %d\n", ansl, ansr); return 0; }