結果

問題 No.489 株に挑戦
ユーザー nanophoto12nanophoto12
提出日時 2020-07-25 16:45:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,380 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 206,184 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 00:27:42
合計ジャッジ時間 3,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
5,248 KB
testcase_01 WA -
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 24 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 12 ms
5,376 KB
testcase_20 AC 29 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 34 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 31 ms
5,376 KB
testcase_27 AC 31 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 34 ms
5,376 KB
testcase_31 AC 31 ms
5,376 KB
testcase_32 AC 19 ms
5,376 KB
testcase_33 AC 34 ms
5,376 KB
testcase_34 AC 28 ms
5,376 KB
testcase_35 AC 13 ms
5,376 KB
testcase_36 AC 7 ms
5,376 KB
testcase_37 AC 19 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define M_PI       3.14159265358979323846   // pi

using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<ll> VI;
typedef pair<ll, ll> P;
typedef tuple<ll, ll, ll> t3;
typedef tuple<ll, ll, ll, ll> t4;
typedef tuple<ll, ll, ll, ll, ll> t5;

#define rep(a,n) for(ll a = 0;a < n;a++)
#define repi(a,b,n) for(ll a = b;a < n;a++)

using namespace std;

static const ll INF = 1e15;

const ll mod = 1000000007;

template<typename T>
static inline void chmin(T & ref, const T  value) {
	if (ref > value) ref = value;
}

template<typename T>
static inline void chmax(T& ref, const T value) {
	if (ref < value) ref = value;
}



int main() {
	ll n, day, k;
	cin >> n >> day >> k;
	vector<ll> vs(n);
	rep(i, n) cin >> vs[i];
	deque<int> deq;
	rep(i, day+1) {
		while (!deq.empty() && vs[deq.front()] < vs[i]) {
			deq.pop_front();
		}
		deq.push_back(i);
	}
	ll up = 0;
	ll o1 = 0, o2 = 0;
	for (int i = 0; i < n; i++) {
		auto o = vs[i];
		auto t = vs[deq.front()];
		if (up < t - o) {
			o1 = i;
			o2 = deq.front();
			up = t - o;
		}
		if (deq.front() == i) {
			deq.pop_front();
		}
		if (i + day + 1 < n) {
			while (!deq.empty() && vs[deq.front()] < vs[i+day + 1]) {
				deq.pop_front();
			}
			deq.push_back(i + day + 1);
		}
	}
	cout << up * k << endl;
	if (up > 0) {
		cout << o1 << " " << o2 << endl;
	}
	return 0;
}
0