結果

問題 No.489 株に挑戦
ユーザー data9824data9824
提出日時 2017-02-26 16:32:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 1,210 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 66,356 KB
実行使用メモリ 13,264 KB
最終ジャッジ日時 2024-07-19 23:31:53
合計ジャッジ時間 2,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
13,264 KB
testcase_01 AC 27 ms
12,108 KB
testcase_02 AC 8 ms
11,264 KB
testcase_03 AC 8 ms
11,136 KB
testcase_04 AC 9 ms
11,264 KB
testcase_05 AC 8 ms
11,136 KB
testcase_06 AC 8 ms
11,264 KB
testcase_07 AC 8 ms
11,264 KB
testcase_08 AC 8 ms
11,136 KB
testcase_09 AC 8 ms
11,136 KB
testcase_10 AC 8 ms
11,264 KB
testcase_11 AC 8 ms
11,136 KB
testcase_12 AC 8 ms
11,136 KB
testcase_13 AC 8 ms
11,136 KB
testcase_14 AC 8 ms
11,264 KB
testcase_15 AC 11 ms
11,264 KB
testcase_16 AC 36 ms
13,136 KB
testcase_17 AC 12 ms
11,264 KB
testcase_18 AC 25 ms
12,236 KB
testcase_19 AC 23 ms
12,236 KB
testcase_20 AC 49 ms
13,132 KB
testcase_21 AC 17 ms
11,520 KB
testcase_22 AC 12 ms
11,264 KB
testcase_23 AC 30 ms
12,236 KB
testcase_24 AC 54 ms
13,132 KB
testcase_25 AC 8 ms
11,264 KB
testcase_26 AC 47 ms
13,136 KB
testcase_27 AC 42 ms
11,392 KB
testcase_28 AC 8 ms
11,136 KB
testcase_29 AC 8 ms
11,136 KB
testcase_30 AC 54 ms
13,256 KB
testcase_31 AC 45 ms
13,132 KB
testcase_32 AC 33 ms
12,108 KB
testcase_33 AC 53 ms
13,260 KB
testcase_34 AC 41 ms
13,132 KB
testcase_35 AC 23 ms
12,236 KB
testcase_36 AC 13 ms
11,392 KB
testcase_37 AC 27 ms
12,240 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; ++i) {
        if (i + d < n) {
            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