結果
問題 | No.77 レンガのピラミッド |
ユーザー | otsnsk |
提出日時 | 2014-12-25 10:54:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 701 bytes |
コンパイル時間 | 576 ms |
コンパイル使用メモリ | 59,936 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 05:00:51 |
合計ジャッジ時間 | 1,548 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
ソースコード
#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; }