結果

問題 No.489 株に挑戦
ユーザー mamekinmamekin
提出日時 2017-04-02 04:29:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 1,000 ms
コード長 1,061 bytes
コンパイル時間 1,204 ms
コンパイル使用メモリ 108,940 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-07-19 23:43:40
合計ジャッジ時間 3,222 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
5,248 KB
testcase_01 AC 35 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 61 ms
5,504 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 30 ms
5,376 KB
testcase_19 AC 26 ms
5,376 KB
testcase_20 AC 70 ms
5,760 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 29 ms
5,376 KB
testcase_24 AC 78 ms
5,632 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 53 ms
7,808 KB
testcase_27 AC 41 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 75 ms
8,320 KB
testcase_31 AC 53 ms
8,320 KB
testcase_32 AC 34 ms
5,376 KB
testcase_33 AC 74 ms
5,376 KB
testcase_34 AC 59 ms
5,376 KB
testcase_35 AC 24 ms
5,376 KB
testcase_36 AC 10 ms
5,376 KB
testcase_37 AC 37 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:52:29: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized]
   52 |         cout << a << ' ' << b << endl;
      |                             ^
main.cpp:35:12: note: 'b' was declared here
   35 |     int a, b;
      |            ^
main.cpp:52:22: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized]
   52 |         cout << a << ' ' << b << endl;
      |                      ^~~
main.cpp:35:9: note: 'a' was declared here
   35 |     int a, b;
      |         ^

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <complex>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
#include <iterator>
using namespace std;

int main()
{
    int n, d, k;
    cin >> n >> d >> k;
    vector<int> x(n);
    for(int i=0; i<n; ++i)
        cin >> x[i];

    long long ans = 0;
    int a, b;
    multiset<pair<int, int> > ms;
    for(int i=0; i<n; ++i){
        ms.insert(make_pair(x[i], i));
        pair<int, int> p = *ms.begin();
        if(ans < x[i] - p.first){
            ans = x[i] - p.first;
            a = p.second;
            b = i;
        }
        if(i-d >= 0)
            ms.erase(make_pair(x[i-d], i-d));
    }

    ans *= k;
    cout << ans << endl;
    if(ans > 0)
        cout << a << ' ' << b << endl;

    return 0;
}
0