結果

問題 No.489 株に挑戦
ユーザー char134217728char134217728
提出日時 2017-08-20 06:56:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 792 bytes
コンパイル時間 1,263 ms
コンパイル使用メモリ 165,860 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-04-22 17:59:52
合計ジャッジ時間 3,403 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 46 ms
5,504 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 20 ms
5,376 KB
testcase_19 AC 17 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 30 ms
7,936 KB
testcase_27 AC 22 ms
5,376 KB
testcase_28 WA -
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:16:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
   16 | 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 << k * m[0] << endl;
  if(m[0] > 0) cout << m[1] << " " << m[2] << endl;
}
0