結果
問題 | No.484 収穫 |
ユーザー | tubo28 |
提出日時 | 2017-02-10 23:33:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,344 bytes |
コンパイル時間 | 1,730 ms |
コンパイル使用メモリ | 170,260 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 04:53:32 |
合計ジャッジ時間 | 3,473 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 115 ms
5,376 KB |
testcase_13 | AC | 117 ms
5,376 KB |
testcase_14 | AC | 116 ms
5,376 KB |
testcase_15 | AC | 116 ms
5,376 KB |
testcase_16 | AC | 116 ms
5,376 KB |
testcase_17 | AC | 115 ms
5,376 KB |
testcase_18 | AC | 115 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 116 ms
5,376 KB |
testcase_23 | AC | 117 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define FOR(i, a, b) for (int i = (a); i < int(b); ++i) #define RFOR(i, a, b) for (int i = (b) - 1; i >= int(a); --i) #define rep(i, n) FOR(i, 0, n) #define rep1(i, n) FOR(i, 1, int(n) + 1) #define rrep(i, n) RFOR(i, 0, n) #define rrep1(i, n) RFOR(i, 1, int(n) + 1) #define all(c) begin(c), end(c) template<typename T> void __dump__(const T &first){ std::cerr << first << std::endl; } template<typename First, typename... Rest> void __dump__(const First& first, const Rest&... rest) { std::cerr << first << ", "; __dump__(rest...); } #define dump(...) { std::cerr << __LINE__ << ":\t" #__VA_ARGS__ " = "; __dump__(__VA_ARGS__); } #define int ll int n; vector<int> a; signed main(){ while(cin >> n){ a.resize(n); rep(i, n){ cin >> a[i]; } int ans = 1e18; rep(_, 2){ rep(i, n){ // dump(i); int x = i; int time = a[x]; rep(j, n - 1){ int nx = (x + 1) % n; time = max(time + abs(x - nx), a[nx]); x = nx; // dump(time); } ans = min(ans, time); } reverse(all(a)); } cout << ans << endl; } }