結果

問題 No.45 回転寿司
ユーザー satanicsatanic
提出日時 2016-03-22 22:06:22
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,302 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 61,936 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 11:16:47
合計ジャッジ時間 1,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

//#define SHOWARRY(a) {printf("---"#a"---\n");for(int i=0;i<n;++i){printf("%4d\n",a[i]);}printf("----\n");}

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(0);

	int n;
	std::cin >> n;
	std::vector<int> v(n, 0);
	std::vector<int> check(n, 0);
	for (int i = 0; i < n; ++i) {
		std::cin >> v[i];
	}
	int sum = 0;
	switch (n) {
	case 1:
		sum = v[0];
		break;
	case 2:
		sum = (v[0] < v[1]) ? v[1] : v[0];
		break;
	case 3:
		sum = (v[0] + v[2] < v[1]) ? v[1] : v[0] + v[2];
		break;
	default:
		for (int i = 0; i < n - 3; ++i) {
			int tmp1 = v[i] + v[i + 2];
			int tmp2 = v[i] + v[i + 3];
			int tmp3 = v[i + 1] + v[i + 3];
			int tmp = std::max({ tmp1, tmp2, tmp3 });
			if (tmp == tmp1) {
				++check[i];
				++check[i + 2];
			}
			else if (tmp == tmp2) {
				++check[i];
				++check[i + 3];
			}
			else if (tmp == tmp3) {
				++check[i + 1];
				++check[i + 3];
			}
		}//SHOWARRY(check);
		for (int i = 0; i < n - 1; ++i) {
			if (check[i] > 0 && check[i + 1] > 0) {
				if (v[i] < v[i + 1]) {
					check[i] = 0;
				}
				else {
					check[i + 1] = 0;
				}
			}
		}//SHOWARRY(check);
		for (int i = 0; i < n; ++i) {
			if (check[i] > 0) {
				sum += v[i];
			}
		}
		break;
	}
	
	std::cout << sum << "\n";

	return 0;
}
0