結果

問題 No.1594 Three Classes
ユーザー elpheelphe
提出日時 2024-11-12 15:01:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 655 bytes
コンパイル時間 930 ms
コンパイル使用メモリ 77,904 KB
実行使用メモリ 16,840 KB
最終ジャッジ日時 2024-11-12 15:01:39
合計ジャッジ時間 7,894 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

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

	uint16_t N, i;
	cin >> N;
	vector<uint32_t> E(N);
	for (i = 0; i != N; ++i) cin >> E[i];

	uint32_t E_sum = 0;
	for (i = 0; i != N; ++i) E_sum += E[i];

	uint32_t P[12] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 };
	do
	{
		uint32_t sum = 0;
		for (i = 0; i != N; ++i)
		{
			sum += E[P[i]];
			if (sum * 3 == E_sum) sum = 0;
			else if (sum * 3 > E_sum) break;
		}

		if (i == N)
		{
			cout << "Yes\n";
			return 0;
		}
	}
	while (next_permutation(P, P + N));

	cout << "No\n";
	return 0;
}
0