結果

問題 No.489 株に挑戦
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-03-03 03:00:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 1,949 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 173,912 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-07-19 23:41:12
合計ジャッジ時間 3,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
14,080 KB
testcase_01 AC 21 ms
10,112 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 1 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 32 ms
15,488 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 20 ms
9,932 KB
testcase_19 AC 16 ms
8,576 KB
testcase_20 AC 39 ms
15,744 KB
testcase_21 AC 10 ms
6,144 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 24 ms
10,496 KB
testcase_24 AC 43 ms
17,664 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 40 ms
17,664 KB
testcase_27 AC 40 ms
17,664 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 43 ms
17,664 KB
testcase_31 AC 40 ms
17,792 KB
testcase_32 AC 25 ms
10,736 KB
testcase_33 AC 43 ms
17,152 KB
testcase_34 AC 36 ms
15,360 KB
testcase_35 AC 16 ms
7,936 KB
testcase_36 AC 7 ms
5,376 KB
testcase_37 AC 23 ms
10,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)




#ifdef _MSC_VER
inline unsigned int __builtin_clz(unsigned int x) { unsigned long r; _BitScanReverse(&r, x); return 31 - r; }
inline int __lg(int __n) { return sizeof(int) * 8 - 1 - __builtin_clz(__n); }
#endif
template<class T> struct IRMXQ { // by natsugiri
	vector<T> A; vector<vector<int> > M, X; int N;
	IRMXQ() {}
	IRMXQ(const vector<T> &A_) : A(A_) {
		N = A.size(); int LOGN = __lg(N) + 1;
		M.resize(LOGN); X.resize(LOGN);
		for (int i = 0; i<LOGN; i++) { M[i].resize(N); X[i].resize(N); }
		for (int j = 0; j<N; j++) M[0][j] = X[0][j] = j;
		for (int i = 0; i<LOGN - 1; i++) {
			for (int j = 0; j + (1 << i)<N; j++) {
				if (A[M[i][j + (1 << i)]] < A[M[i][j]]) M[i + 1][j] = M[i][j + (1 << i)];
				else M[i + 1][j] = M[i][j];
				if (A[X[i][j]] < A[X[i][j + (1 << i)]]) X[i + 1][j] = X[i][j + (1 << i)];
				else X[i + 1][j] = X[i][j];
			}
		}
	}
	T min_v(int l, int r) { return A[min_i(l, r)]; }
	int min_i(int l, int r) {
		r = min(N, r);
		int d = __lg(r - l);
		if (A[M[d][r - (1 << d)]] < A[M[d][l]]) return M[d][r - (1 << d)];
		else return M[d][l];
	}
	T max_v(int l, int r) { return A[max_i(l, r)]; }
	int max_i(int l, int r) {
		r = min(N, r);
		int d = __lg(r - l);
		if (A[X[d][l]] < A[X[d][r - (1 << d)]]) return X[d][r - (1 << d)];
		else return X[d][l];
	}
};
//-----------------------------------------------------------------
int N, D, K;
int X[101010];
//-----------------------------------------------------------------
int main() {
	cin >> N >> D >> K;
	rep(i, 0, N) cin >> X[i];
	IRMXQ<int> rmq(vector<int>(X, X + N));

	int L = -1, R = -1, C = 0;
	rep(i, 0, N - 1) {
		int a = X[i];
		int b = rmq.max_v(i + 1, i + D + 1);

		int d = b - a;
		if (C < d) {
			C = d;
			L = i;
			R = rmq.max_i(i + 1, i + D + 1);
		}
	}

	if (L < 0) {
		printf("0\n");
		return 0;
	}

	printf("%lld\n", 1LL * C * K);
	printf("%d %d\n", L, R);
}
0