結果
問題 | No.489 株に挑戦 |
ユーザー | siman |
提出日時 | 2022-11-11 12:30:40 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,094 bytes |
コンパイル時間 | 3,155 ms |
コンパイル使用メモリ | 142,928 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 08:38:08 |
合計ジャッジ時間 | 5,539 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | AC | 25 ms
6,940 KB |
testcase_17 | AC | 6 ms
6,940 KB |
testcase_18 | AC | 16 ms
6,940 KB |
testcase_19 | AC | 12 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | AC | 32 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
6,940 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 <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; struct Node { int day; int x; Node(int day = -1, int x = -1) { this->day = day; this->x = x; } bool operator>(const Node &n) const { return x > n.x; } }; int main() { int N, D, K; cin >> N >> D >> K; priority_queue <Node, vector<Node>, greater<Node>> pque; int X[N]; for (int i = 0; i < N; ++i) { cin >> X[i]; } pque.push(Node(0, X[0])); int ans = 0; int j = -1; int k = -1; for (int day = 1; day <= N - 1; ++day) { int x = X[day]; while (day - pque.top().day > D) { pque.pop(); } int diff = x - pque.top().x; if (ans < diff * K) { ans = diff * K; j = pque.top().day; k = day; } pque.push(Node(day, x)); } if (ans == 0) { cout << 0 << endl; } else { cout << ans << endl; cout << j << " " << k << endl; } return 0; }