結果
問題 | No.77 レンガのピラミッド |
ユーザー |
![]() |
提出日時 | 2014-12-25 16:38:36 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 828 bytes |
コンパイル時間 | 445 ms |
コンパイル使用メモリ | 60,964 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 22:59:26 |
合計ジャッジ時間 | 1,365 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 20 |
ソースコード
#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_w = (int)sqrt(block_total); long long ans = block_total; for (int i = max_w, l = max_w; i <= l; i++) { long long surplus = 0; int h = 1, j = 0; for (int l = min(i-1,N-1); j <= l; j++, h++) { surplus += max(0, A[j] - h); } h = i - 1; for (int l = min(2*i-1,N); j < l; j++, h--) { surplus += max(0, A[j] - h); } for (; j < N; j++) { surplus += A[j]; } ans = min(ans, surplus); } cout << ans << endl; return 0; }