結果
問題 | No.77 レンガのピラミッド |
ユーザー |
![]() |
提出日時 | 2014-12-25 10:54:48 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 701 bytes |
コンパイル時間 | 576 ms |
コンパイル使用メモリ | 59,936 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 05:00:51 |
合計ジャッジ時間 | 1,548 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 12 WA * 8 |
ソースコード
#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; }