結果

問題 No.489 株に挑戦
ユーザー data9824data9824
提出日時 2017-02-26 16:23:52
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 935 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 66,668 KB
実行使用メモリ 13,264 KB
最終ジャッジ日時 2024-06-11 16:43:13
合計ジャッジ時間 2,106 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
13,136 KB
testcase_01 WA -
testcase_02 AC 6 ms
11,136 KB
testcase_03 AC 6 ms
11,008 KB
testcase_04 AC 6 ms
11,136 KB
testcase_05 AC 6 ms
11,264 KB
testcase_06 AC 7 ms
11,264 KB
testcase_07 AC 6 ms
11,264 KB
testcase_08 AC 6 ms
11,136 KB
testcase_09 WA -
testcase_10 AC 7 ms
11,136 KB
testcase_11 AC 7 ms
11,264 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 6 ms
11,264 KB
testcase_15 AC 7 ms
11,264 KB
testcase_16 AC 27 ms
13,260 KB
testcase_17 AC 10 ms
11,392 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 34 ms
13,136 KB
testcase_21 AC 14 ms
11,520 KB
testcase_22 AC 9 ms
11,392 KB
testcase_23 AC 23 ms
12,108 KB
testcase_24 WA -
testcase_25 AC 7 ms
11,136 KB
testcase_26 AC 33 ms
13,136 KB
testcase_27 AC 37 ms
13,136 KB
testcase_28 AC 7 ms
11,136 KB
testcase_29 AC 7 ms
11,136 KB
testcase_30 WA -
testcase_31 AC 35 ms
13,260 KB
testcase_32 AC 24 ms
12,108 KB
testcase_33 AC 37 ms
13,132 KB
testcase_34 WA -
testcase_35 AC 17 ms
12,108 KB
testcase_36 AC 10 ms
11,340 KB
testcase_37 AC 22 ms
12,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <utility>

using namespace std;

int main(int argc, const char * argv[]) {
    int n, d;
    long long k;
    cin >> n >> d >> k;
    long long x[1000000];
    for (int i = 0; i < n; ++i) {
        cin >> x[i];
    }
    priority_queue<pair<long long, int> > max;
    for (int i = 0; i < d - 1; ++i) {
        max.push(make_pair(x[i], i));
    }
    long long maxProfit = 0;
    int maxIn = 0, maxOut = 0;
    for (int i = 0; i < n - d; ++i) {
        max.push(make_pair(x[i + d], i + d));
        while (max.top().second < i) {
            max.pop();
        }
        long long profit = max.top().first - x[i];
        if (maxProfit < profit) {
            maxProfit = profit;
            maxIn = i;
            maxOut = max.top().second;
        }
    }
    cout << (maxProfit * k) << endl;
    if (maxProfit > 0) {
        cout << maxIn << " " << maxOut << endl;
    }
    return 0;
}
0