結果

問題 No.77 レンガのピラミッド
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-13 17:55:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,192 bytes
コンパイル時間 3,037 ms
コンパイル使用メモリ 245,804 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 17:55:41
合計ジャッジ時間 3,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(long long i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(long long i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int main() {
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i, n) {
        cin >> a[i];
    }
    int sum = accumulate(ALL(a), 0);
    int ans = 2000000000;
    for (int i = 1; ; i += 2) {
        int h = (i + 1) / 2;
        if (h * h > sum) {
            break;
        }
        vector<int> len(i);
        for (int j = 0; j < h; j++) {
            len[j] = len[i - 1 - j] = j + 1;
        }
        int more = 0, less = 0;
        rep(j, max(i, n)) {
            if (j < n && j < i) {
                if (a[j] > len[j]) {
                    more += a[j] - len[j];
                } else {
                    less += len[j] - a[j];
                }
            } else if (j < n) {
                more += a[j];
            } else {
                less += len[j];
            }
        }
        ans = min(ans, max(more, less));
    }
    cout << ans << endl;
}
0