結果

問題 No.77 レンガのピラミッド
ユーザー otsnskotsnsk
提出日時 2014-12-25 10:54:48
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 59,876 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-09-02 22:49:44
合計ジャッジ時間 1,700 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;


int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int N, A[110], block_total = 0;
    cin >> N;
    for (int i = 0; i < N; i++) {
        cin >> A[i];
        block_total += A[i];
    }
    int max_cols = (int)sqrt(block_total);

    int ans = block_total;
    for (int i = 1; i <= max_cols; i++) {
        int surplus = 0, h = 1, dh = 1, j = 0;
        for (; j < 2*i-1; j++, h+=dh) {
            surplus += max(0, A[j]-h);
            if (j == i-1) dh = -1;
        }
        for (; j < N; j++) {
            surplus += A[j];
        }
        ans = min(ans, surplus);
    }

    cout << ans << endl;

    
    return 0;
}
0