結果
問題 | No.489 株に挑戦 |
ユーザー | TangentDay |
提出日時 | 2017-02-24 22:41:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,744 bytes |
コンパイル時間 | 659 ms |
コンパイル使用メモリ | 82,864 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 22:51:29 |
合計ジャッジ時間 | 3,078 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
5,248 KB |
testcase_01 | AC | 16 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 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 | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | RE | - |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 17 ms
5,376 KB |
testcase_19 | AC | 13 ms
5,376 KB |
testcase_20 | RE | - |
testcase_21 | AC | 8 ms
5,376 KB |
testcase_22 | AC | 4 ms
5,376 KB |
testcase_23 | AC | 18 ms
5,376 KB |
testcase_24 | AC | 35 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 28 ms
5,376 KB |
testcase_27 | AC | 35 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | RE | - |
testcase_31 | AC | 28 ms
5,376 KB |
testcase_32 | AC | 19 ms
5,376 KB |
testcase_33 | AC | 33 ms
5,376 KB |
testcase_34 | AC | 31 ms
5,376 KB |
testcase_35 | AC | 13 ms
5,376 KB |
testcase_36 | AC | 5 ms
5,376 KB |
testcase_37 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:64:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 64 | scanf("%d", &x[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <iostream> #include <fstream> #include <cstdio> #include <cmath> #include <vector> #include <cstring> #include <string> #include <set> #include <map> #include <stack> #include <queue> #include <algorithm> using namespace std; #define REP(i,n) for(int i=0; i<n; ++i) #define FOR(i,a,b) for(int i=a; i<=b; ++i) #define FORR(i,a,b) for (int i=a; i>=b; --i) #define ALL(c) (c).begin(), (c).end() typedef long long ll; typedef vector<int> VI; typedef vector<ll> VL; typedef vector<VI> VVI; typedef pair<int,int> P; typedef pair<ll,ll> PL; #define INF 1e9 const int MAX_N = 100010; int n, width; int dat[MAX_N*4]; void init(){ width = 1; while(width<n) width*=2; REP(i,2*width-1) dat[i] = INF; } void update(int i, int x){ i += width-1; dat[i] = x; while (i>0){ i = (i-1)/2; dat[i] = min(dat[i*2+1],dat[i*2+2]); } } int query(int a, int b, int k, int l, int r){ if (r<=a || b<=l) return INF; if (a<=l && r<=b) return dat[k]; int vl = query(a,b,k*2+1,l,(l+r)/2); int vr = query(a,b,k*2+2,(l+r)/2,r); return min(vl,vr); } int main() { int d; ll kabu; cin >> n >> d >> kabu; init(); VI x(n); REP(i,n){ scanf("%d", &x[i]); update(i, x[i]); } ll ans = 0; int j, k; REP(i,n){ int mi = query(max(0, i-d), i+1, 0, 0, width); if (x[i] - mi > ans){ ans = x[i] - mi; k = i; } } if (ans == 0){ cout << 0 << endl; return 0; } FOR(i,k-d,k){ if (x[i] == x[k] - ans){ j = i; break; } } ans *= kabu; if (ans == 0) cout << 0 << endl; else printf("%lld\n%d %d\n", ans, j, k); return 0; }