結果

問題 No.77 レンガのピラミッド
ユーザー ふーらくたるふーらくたる
提出日時 2016-08-20 09:43:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 901 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 54,744 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 10:47:11
合計ジャッジ時間 1,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;

const int MAX_N = 110;
const int END = 201;
int a[MAX_N];

int int_pow(int a, int b) {
    int res = 1;
    for (int i = 0; i < b; i++) res *= a;
    return res;
}

int main() {
    int n, sum = 0;
    cin >> n;

    for (int i = 0; i < n; i++) {
        cin >> a[i];
        sum += a[i];
    }

    int ans = (1 << 28);
    for (int w = END; w >= 1; w -= 2) {
        int use_block = int_pow((w + 1) / 2, 2);
        if (use_block > sum) continue;

        int cost = 0, missing = 0;
        for (int b_i = 0; b_i < END; b_i++) {
            int height = (b_i < w) ? min(1 + b_i, w - b_i) : 0,
                cur_height = b_i < n ? a[b_i] : 0;
            cost += abs(height - cur_height);
            if (height > cur_height) missing += height - cur_height;
        }
        ans = min(ans, cost - missing);
    }
    cout << ans << endl;

    return 0;
}
0