結果

問題 No.77 レンガのピラミッド
ユーザー tkmst201tkmst201
提出日時 2017-04-24 11:49:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,258 bytes
コンパイル時間 1,165 ms
コンパイル使用メモリ 144,344 KB
実行使用メモリ 4,352 KB
最終ジャッジ日時 2023-10-11 13:01:02
合計ジャッジ時間 2,232 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 1 ms
4,348 KB
testcase_07 AC 2 ms
4,352 KB
testcase_08 AC 2 ms
4,352 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 1 ms
4,352 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,352 KB
testcase_13 AC 1 ms
4,352 KB
testcase_14 AC 2 ms
4,352 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,352 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 1 ms
4,352 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,352 KB
testcase_21 AC 2 ms
4,352 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 AC 1 ms
4,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:43:2: warning: ‘maxs’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  if (maxs < n) ans += sum[n] - sum[maxs];
  ^~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; }
template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; }

typedef unsigned long long ull;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

const ll INF = 1ll<<29;
const ll MOD = 1000000007;
const double EPS  = 1e-10;

int main() {
	int n, a[100];
	
	cin >> n;
	REP(i, n) scanf("%d", a + i);
	
	int sum[101];
	sum[0] = 0;
	REP(i, n) sum[i + 1] = sum[i] + a[i];
	
	int cnt[10000];
	
	cnt[1] = 1;
	for (int i = 3; i < 10000; i += 2)
		cnt[i] = cnt[i - 2] + i;
	
	int maxs;
	for (int i = 1; i < 10000; i += 2)
		if (sum[n] >= cnt[i]) maxs = i;
	
	int ans = 0;
	
	if (maxs < n) ans += sum[n] - sum[maxs];
	
	if (maxs / 2 < n && a[maxs / 2] > maxs / 2 + 1) ans += a[maxs / 2] - (maxs / 2 + 1);
	
	for (int i = 0; i < maxs / 2; i++) {
		if (i >= n) break;
		
		if (a[i] > i + 1) ans += a[i] - (i + 1);
		if (maxs - i - 1 < n && a[maxs - i - 1] > i + 1) ans += a[maxs - i - 1] - (i + 1);
	}
	
	cout << ans << endl;
	
	return 0;
}
0