結果

問題 No.489 株に挑戦
ユーザー pazzle1230pazzle1230
提出日時 2017-02-24 22:50:50
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,226 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 96,288 KB
実行使用メモリ 9,272 KB
最終ジャッジ日時 2023-09-22 17:49:52
合計ジャッジ時間 4,588 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
9,272 KB
testcase_01 AC 14 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 3 ms
4,380 KB
testcase_16 AC 25 ms
4,704 KB
testcase_17 AC 5 ms
4,380 KB
testcase_18 AC 16 ms
4,380 KB
testcase_19 AC 12 ms
4,380 KB
testcase_20 AC 26 ms
4,564 KB
testcase_21 AC 7 ms
4,376 KB
testcase_22 AC 4 ms
4,376 KB
testcase_23 AC 17 ms
4,380 KB
testcase_24 AC 31 ms
4,660 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 25 ms
4,556 KB
testcase_27 AC 32 ms
4,640 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 25 ms
4,700 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <queue>
#include <algorithm>
#include <utility>
#include <cmath>
#include <map>
#include <set>
#include <stack>
#include <cstdio>
#include <cstdlib>
#include <cstring>

#define INF_LL 1e18
#define INF 1e9

#define REP(i, n) for(int i = 0;i < (n);i++)
#define FOR(i, a, b) for(int i = (a);i < (b);i++)
#define all(x) x.begin(),x.end()

using namespace std;

using ll = long long;
using PII = pair<int, int>;

template<typename T>
void chmax(T &a, T &b){
	a = max(a, b);
}

template<typename T>
void chmin(T &a, T &b){
	a = min(a, b);
}

class Union_find{
private:
	vector<int> par;
	vector<int> rank;
	int n;

public:
	Union_find(int a){
		n = a;
		for(int i = 0;i < n;i++){
			par.push_back(i);
			rank.push_back(0);
		}
	}

	int find(int x){
		if(par[x] == x){
			return x;
		}else{
			return par[x] = find(par[x]);
		}
	}

	void unite(int x, int y){
		x = find(x);
		y = find(y);
		if(x == y) return;

		if(rank[x] < rank[y]){
			par[x] = y;
		}else{
			par[y] = x;
			if(rank[x] == rank[y]) rank[x]++;
		}
	}

	bool same(int x, int y){
		return find(x) == find(y);
	}
};

class RMQ{
	vector<int> dat;
	int n;
public:
	RMQ(int n_){
		n = 1;
		while(n < n_) n *= 2;
		REP(i, n*2-1){
			dat.push_back(INF);
		}
	}

	void update(int x, int i){
		i += n-1;
		dat[i] = x;
		while(i > 0){
			i = (i-1)/2;
			dat[i] = min(dat[i*2+1], dat[i*2+2]);
		}
	}

	int query(int a, int b, int l, int r, int k){
		if(a <= l && r <= b) return dat[k];
		if(b <= l || r <= a) return INF;

		return min(query(a, b, l, (l+r)/2, k*2+1), query(a, b, (l+r)/2, r, k*2+2));
	}

	int query(int a, int b){
		return query(a, b, 0, n, 0);
	}
};

int main(void){
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N, D, K;
	int x[114514];
	cin >> N >> D >> K;
	RMQ rmq(N);
	ll res = 0;
	int l = 0, r = 0;
	REP(i, N){
		cin >> x[i];
		rmq.update(x[i], i);
	}
	FOR(i, 1, N){
		ll ret = (ll)K*((ll)x[i]-(ll)rmq.query(max(i-D, 0), i));
		if(ret > res){
			res = ret;
			l = max(i-D, 0); r = i;
			FOR(j, max(i-D, 0), i){
				if(x[l] > x[j]){
					l = j;
				}
			}
		}
	}
	if(res == 0){
		cout << 0 << endl;
		return 0;
	}
	cout << res << endl;
	cout << l << " " << r << endl;
}
0