結果
問題 | No.489 株に挑戦 |
ユーザー | xuzijian629 |
提出日時 | 2018-11-03 01:15:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,864 bytes |
コンパイル時間 | 2,120 ms |
コンパイル使用メモリ | 206,840 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-20 18:05:06 |
合計ジャッジ時間 | 4,527 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 5 ms
6,816 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
6,816 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 | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:80:26: warning: 'j' may be used uninitialized [-Wmaybe-uninitialized] 80 | if (as[i] == as[j] + nax) { | ^ main.cpp:63:18: note: 'j' was declared here 63 | int nax = 0, j; | ^
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = int64_t; using vi = vector<i64>; using vvi = vector<vi>; template <class T> class SegTree { using F = function<T(T, T)>; int n; vector<T> data; const F f; const T e; public: SegTree(const vector<T>& as, const F f, const T e) : f(f), e(e) { n = 1; while (n < as.size()) n <<= 1; data = vi(2 * n, e); for (int i = 0; i < as.size(); i++) { data[n + i] = as[i]; } for (int i = n - 1; i > 0; i--) { data[i] = f(data[2 * i], data[2 * i] + 1); } } void update(int k, const T& x) { k += n; data[k] = x; while (k >>= 1) { data[k] = f(data[2 * k], data[2 * k] + 1); } } T query(int a, int b) { T L = e, R = e; for (a += n, b += n; a < b; a >>= 1, b >>= 1) { if (a & 1) { L = f(L, data[a++]); } if (b & 1) { R = f(data[--b], R); } } return f(L, R); } T operator[](const int& k) const { return data[k + n]; } }; int main() { int n, d, k; cin >> n >> d >> k; vi as(n); for (int i = 0; i < n; i++) { cin >> as[i]; } int nax = 0, j; SegTree<i64> segtree(as, [](i64 a, i64 b) {return max(a, b);}, -1e9); for (int i = 0; i < n - 1; i++) { int x = as[i]; int y = segtree.query(i + 1, min(n, i + d + 1)); if (y - x > nax) { j = i; nax = y - x; } } if (nax == 0) { cout << nax << endl; return 0; } cout << nax * k << endl; cout << j << " "; for (int i = j + 1; i < n; i++) { if (as[i] == as[j] + nax) { cout << i << endl; return 0; } } }