結果

問題 No.489 株に挑戦
ユーザー char134217728char134217728
提出日時 2017-08-20 07:00:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 796 bytes
コンパイル時間 1,276 ms
コンパイル使用メモリ 151,792 KB
実行使用メモリ 8,492 KB
最終ジャッジ日時 2023-09-27 05:49:37
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
4,376 KB
testcase_01 AC 25 ms
5,036 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 3 ms
4,376 KB
testcase_16 AC 46 ms
5,644 KB
testcase_17 AC 4 ms
4,376 KB
testcase_18 AC 22 ms
4,376 KB
testcase_19 AC 19 ms
4,520 KB
testcase_20 AC 48 ms
5,972 KB
testcase_21 AC 10 ms
4,380 KB
testcase_22 AC 4 ms
4,376 KB
testcase_23 AC 17 ms
4,376 KB
testcase_24 AC 57 ms
5,796 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 35 ms
8,056 KB
testcase_27 AC 24 ms
4,380 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 52 ms
8,444 KB
testcase_31 AC 33 ms
8,492 KB
testcase_32 AC 23 ms
4,380 KB
testcase_33 AC 54 ms
5,520 KB
testcase_34 AC 41 ms
4,376 KB
testcase_35 AC 16 ms
4,380 KB
testcase_36 AC 7 ms
4,380 KB
testcase_37 AC 26 ms
5,392 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:16:6: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
 main(){
      ^

ソースコード

diff #

#include <bits/stdc++.h>
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define FORR(i,a,b) for (int i=(a);i>=(b);i--)
#define pb push_back

using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef set<int> si;
const int inf = 1e9;
const int mod = 1e9+7;

set<pii> s;
int n, d, k, x[100000];
main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cin >> n >> d >> k;
  d++;
  int m[3];
  m[0] = -1;
  FOR(i, 0, n){
    cin >> x[i];
    s.insert(pii(x[i], i));
    if(i - d >= 0) s.erase(pii(x[i - d], i - d));
    set<pii>::iterator itr = s.begin();
    if(m[0] < x[i] - itr->first){
      m[0] = x[i] - itr->first;
      m[1] = itr->second;
      m[2] = i;
    }
  }
  cout << (ll)k * m[0] << endl;
  if(m[0] > 0) cout << m[1] << " " << m[2] << endl;
}
0