結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
13,256 KB
testcase_01 WA -
testcase_02 AC 6 ms
11,264 KB
testcase_03 AC 6 ms
11,264 KB
testcase_04 AC 6 ms
11,136 KB
testcase_05 AC 6 ms
11,264 KB
testcase_06 AC 6 ms
11,136 KB
testcase_07 AC 6 ms
11,136 KB
testcase_08 AC 6 ms
11,264 KB
testcase_09 AC 7 ms
11,136 KB
testcase_10 AC 6 ms
11,136 KB
testcase_11 AC 6 ms
11,136 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 6 ms
11,264 KB
testcase_15 AC 8 ms
11,392 KB
testcase_16 AC 28 ms
13,256 KB
testcase_17 AC 10 ms
11,392 KB
testcase_18 AC 18 ms
12,108 KB
testcase_19 WA -
testcase_20 AC 34 ms
13,264 KB
testcase_21 AC 13 ms
11,648 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,264 KB
testcase_26 AC 34 ms
13,128 KB
testcase_27 AC 36 ms
11,392 KB
testcase_28 AC 7 ms
11,136 KB
testcase_29 AC 6 ms
11,136 KB
testcase_30 WA -
testcase_31 AC 37 ms
13,136 KB
testcase_32 AC 23 ms
12,108 KB
testcase_33 AC 36 ms
13,132 KB
testcase_34 WA -
testcase_35 AC 18 ms
12,240 KB
testcase_36 AC 10 ms
11,464 KB
testcase_37 AC 22 ms
12,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>

using namespace std;

struct Quote {
    Quote(long long price, int date) : price(price), date(date) {}
    long long price;
    int date;
};

bool operator<(const Quote& lhs, const Quote& rhs) {
    if (lhs.price != rhs.price) {
        return lhs.price < rhs.price;
    }
    return lhs.date > rhs.date;
}

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<Quote> max;
    for (int i = 0; i < d - 1; ++i) {
        max.push(Quote(x[i], i));
    }
    long long maxProfit = 0;
    int maxIn = 0, maxOut = 0;
    for (int i = 0; i < n - d; ++i) {
        max.push(Quote(x[i + d], i + d));
        while (max.top().date < i) {
            max.pop();
        }
        long long profit = max.top().price - x[i];
        if (maxProfit < profit) {
            maxProfit = profit;
            maxIn = i;
            maxOut = max.top().date;
        }
    }
    cout << (maxProfit * k) << endl;
    if (maxProfit > 0) {
        cout << maxIn << " " << maxOut << endl;
    }
    return 0;
}
0