結果

問題 No.77 レンガのピラミッド
ユーザー komori3komori3
提出日時 2017-09-15 15:51:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,551 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 77,176 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 11:30:39
合計ジャッジ時間 1,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cmath>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
#include <map>
#include <functional>
#include <set>
#include <numeric>
#include <stack>
#include <utility>
#include <time.h>
//#include "util.h"

using namespace std;
typedef long long ll;
typedef unsigned long long ull;

#define PI 3.14159265358979323846
#define EPS 1e-6
#define MIN(a,b) ((a)<(b)?(a):(b))
#define MAX(a,b) ((a)>(b)?(a):(b))
#define CHAR_BIT 8

template <typename _Ty>
ostream& operator << (ostream& ostr, const vector<_Ty>& v) {
	if (v.empty()) {
		cout << "{ }";
		return ostr;
	}
	cout << "{" << v.front();
	for (auto itr = ++v.begin(); itr != v.end(); itr++) {
		cout << ", " << *itr;
	}
	cout << "}";
	return ostr;
}

int yuki0077()
{
	int N, s = 0, h;
	vector<int> A(512, 0);

	cin >> N;
	for (int i = 0; i < N; i++) {
		cin >> A[i];
		s += A[i];
	}

	for (h = 0; h * h <= s; h++); h--;

	int minMove = 100000;
	// pos : ピラミッドの左端
	for (int pos = 0; pos < N; pos++) {
		// move : 移動回数, B : 差分
		vector<int> B = A;
		for (int i = 1; i <= h; i++)
			B[pos + i - 1] = max(0, B[pos + i - 1] - i);
		for (int i = 1; i < h; i++)
			B[pos + h + i - 1] = max(0, B[pos + h + i - 1] - (h - i));

		int move = accumulate(B.begin(), B.end(), 0);
		if (minMove > move) minMove = move;
	}

	cout << minMove << endl;

	return 0;
}

int main()
{
	//clock_t start, end;
	//start = clock();

	yuki0077();

	//end = clock();
	//printf("%d msec.\n", end - start);

	return 0;
}
0