結果

問題 No.484 収穫
ユーザー sugim48sugim48
提出日時 2017-03-05 03:58:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,442 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 103,688 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 02:22:00
合計ジャッジ時間 12,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 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 12 ms
5,376 KB
testcase_10 AC 12 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 897 ms
5,376 KB
testcase_13 AC 891 ms
5,376 KB
testcase_14 AC 903 ms
5,376 KB
testcase_15 AC 901 ms
6,940 KB
testcase_16 AC 898 ms
6,944 KB
testcase_17 WA -
testcase_18 AC 906 ms
6,944 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 891 ms
6,944 KB
testcase_23 AC 889 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
#include <random>
#include <fstream>
using namespace std;

#define rep(i, N) for (int i = 0; i < N; i++)
#define pb push_back

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<int, ll> i_ll;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int v; ll w; };

const int MOD = 1000000007;
const int _MOD = 1000000009;
double EPS = 1e-10;
const ll INF = LLONG_MAX / 10;

int main() {
	int N; cin >> N;
	vector<int> a(N);
	rep(i, N) cin >> a[i];
	if (N == 1) {
		cout << a[0] << endl;
		return 0;
	}
	int lb = -1, ub = 1000000000;
	while (ub - lb > 1) {
		int mid = (lb + ub) / 2;
		bool ok = false;
		rep(i0, N) for (int d0 = -1; d0 <= 1; d0 += 2) {
			vector<int> b(N, INT_MIN);
			int i = i0, d = d0;
			rep(t, N * 2) {
				if (b[i] == INT_MIN) b[i] = mid - t;
				if (i + d < 0 || i + d >= N) d *= -1;
				i += d;
			}
			bool unko = false;
			rep(i, N) if (b[i] < a[i]) unko = true;
			if (!unko) ok = true;
		}
		if (ok) ub = mid;
		else lb = mid;
	}
	cout << ub << endl;
}
0