結果
問題 | No.489 株に挑戦 |
ユーザー | 1119_2916 |
提出日時 | 2017-02-25 00:39:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,897 bytes |
コンパイル時間 | 1,402 ms |
コンパイル使用メモリ | 164,496 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-06-11 00:13:14 |
合計ジャッジ時間 | 8,018 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 56 ms
7,936 KB |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 57 ms
8,064 KB |
testcase_31 | AC | 52 ms
7,936 KB |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define INF 1001000100010001000 #define MOD 1000000007 #define RMQ_SIZE 262144 #define EPS 1e-10 #define int long long #define rep(i, N) for (int i = 0; i < N; i++) #define Rep(i, N) for (int i = 1; i < N; i++) #define For(i, a, b) for (int i = (a); i < (b); i++) #define pb push_back #define mp make_pair #define i_i pair<int, int> #define vi vector<int> #define vvi vector<vi > #define vb vector<bool> #define vvb vector<vb > #define vp vector< i_i > #define all(a) (a).begin(), (a).end() #define Int(x) int x; scanf("%lld", &x); #define int2(x, y) int x, y; scanf("%lld %lld", &x, &y); //int dxy[5] = {0, 1, 0, -1, 0}; // assign class segtree { private: i_i dfs(int a,int b,int k,int l,int r) { //* 要求範囲を含まないレンジの探索. if (r <= a || b <= l) { return mp(INF, -1); } //* 木のレンジが要求範囲以下になる時. if (a <= l && r <= b) { return tree[k]; } int m = (l+r)/2; return min(dfs(a, b, k*2+1, l, m), dfs(a, b, k*2+2, m, r)); } i_i min(i_i a, i_i b) { if (a.first < b.first) { return a; } else if (a.first > b.first) { return b; } else if (a.second < b.second) { return a; } else { return b; } } public: int size; i_i *tree; segtree(int tree_size, int c) { size = 2; while (tree_size >>= 1) size++; size = 1<<size; tree = (i_i *)malloc(sizeof(i_i)*size); for (int i = 0; i < size; i++) { tree[i] = mp(c, i); } } i_i getMin(int right, int left) { return dfs(right, left, 0, 0, RMQ_SIZE/2); } void update(int pos, int value) { pos += (RMQ_SIZE/2 -1); tree[pos].first = value; while (pos) { pos = (pos-1)/2; tree[pos] = min(tree[pos*2+1], tree[pos*2+2]); } } }; signed main() { int a, b, c; cin >> a >> b >> c; vi input(a, 0); segtree ma(b, -INF); rep(i, a) { cin >> input[i]; ma.update(i, -input[i]); } int ans = 0; i_i ret; rep(i, a) { i_i e = ma.getMin(i, min(i+b+1, a)); //cout << d.second << " " << e.second << endl; if (ans < -e.first - input[i]) { ans = -e.first - input[i]; ret.first = i; ret.second = e.second - 262144/2 + 1; } } if (ans) { cout << ans * c << endl; cout << ret.first << " " << ret.second << endl; } else { cout << 0 << endl; } return 0; }