結果

問題 No.489 株に挑戦
ユーザー char134217728
提出日時 2017-08-20 07:00:01
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 796 bytes
コンパイル時間 1,339 ms
コンパイル使用メモリ 166,012 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-07-19 23:55:57
合計ジャッジ時間 3,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 << (ll)k * m[0] << endl;
  if(m[0] > 0) cout << m[1] << " " << m[2] << endl;
}
0