結果

問題 No.77 レンガのピラミッド
ユーザー keikei
提出日時 2016-08-31 16:04:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 638 bytes
コンパイル時間 893 ms
コンパイル使用メモリ 62,428 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-26 21:33:45
合計ジャッジ時間 1,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cmath>
#include <algorithm>
using namespace std;
int main() {
	cin.tie(0); ios::sync_with_stdio(false);
	int N; cin >> N;
	int A[500] = { 0 };
	int sum = 0,key;
	int p = 0, ans = 9999, count = 1;
	for (int i = 0; i < N; i++) {
		cin >> A[i];
		sum += A[i];
	}
	key = sqrt(sum);
	for (int i = 0;i < N ; i++) {
		for (int j = i; j < i + 2*key - 1; j++) {
			if (count - A[j] > 0) {
				p += (count - A[j]);
			}
			if (j < i + key - 1) { count++; }
			else { count--; }
		}
		count = 1;
		p += (sum - key*key);
		ans = min(ans, p);
		p = 0;

		if (i + key >= N) { break; }
	}
	cout << ans << endl;
	return 0;
}
0