結果

問題 No.258 回転寿司(2)
ユーザー plasma_eplasma_e
提出日時 2019-01-20 22:29:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,201 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 1,322 ms
コンパイル使用メモリ 132,032 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 19:27:00
合計ジャッジ時間 29,136 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,123 ms
6,820 KB
testcase_01 AC 1,126 ms
6,820 KB
testcase_02 AC 442 ms
6,816 KB
testcase_03 AC 4 ms
6,820 KB
testcase_04 AC 193 ms
6,816 KB
testcase_05 AC 251 ms
6,816 KB
testcase_06 AC 818 ms
6,820 KB
testcase_07 AC 80 ms
6,816 KB
testcase_08 AC 225 ms
6,816 KB
testcase_09 AC 105 ms
6,820 KB
testcase_10 AC 15 ms
6,820 KB
testcase_11 AC 136 ms
6,816 KB
testcase_12 AC 204 ms
6,820 KB
testcase_13 AC 69 ms
6,816 KB
testcase_14 AC 742 ms
6,816 KB
testcase_15 AC 98 ms
6,816 KB
testcase_16 AC 87 ms
6,820 KB
testcase_17 AC 95 ms
6,816 KB
testcase_18 AC 924 ms
6,816 KB
testcase_19 AC 4 ms
6,816 KB
testcase_20 AC 511 ms
6,820 KB
testcase_21 AC 777 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 414 ms
6,816 KB
testcase_27 AC 104 ms
6,816 KB
testcase_28 AC 1,120 ms
6,820 KB
testcase_29 AC 148 ms
6,816 KB
testcase_30 AC 19 ms
6,820 KB
testcase_31 AC 17 ms
6,816 KB
testcase_32 AC 102 ms
6,816 KB
testcase_33 AC 624 ms
6,816 KB
testcase_34 AC 357 ms
6,820 KB
testcase_35 AC 293 ms
6,816 KB
testcase_36 AC 28 ms
6,820 KB
testcase_37 AC 16 ms
6,820 KB
testcase_38 AC 133 ms
6,820 KB
testcase_39 AC 121 ms
6,816 KB
testcase_40 AC 417 ms
6,816 KB
testcase_41 AC 614 ms
6,820 KB
testcase_42 AC 98 ms
6,816 KB
testcase_43 AC 46 ms
6,816 KB
testcase_44 AC 730 ms
6,816 KB
testcase_45 AC 488 ms
6,820 KB
testcase_46 AC 3 ms
6,820 KB
testcase_47 AC 511 ms
6,820 KB
testcase_48 AC 38 ms
6,820 KB
testcase_49 AC 98 ms
6,816 KB
testcase_50 AC 3 ms
6,816 KB
testcase_51 AC 369 ms
6,820 KB
testcase_52 AC 287 ms
6,820 KB
testcase_53 AC 22 ms
6,816 KB
testcase_54 AC 475 ms
6,820 KB
testcase_55 AC 1,201 ms
6,820 KB
testcase_56 AC 448 ms
6,816 KB
testcase_57 AC 37 ms
6,816 KB
testcase_58 AC 299 ms
6,816 KB
testcase_59 AC 940 ms
6,820 KB
testcase_60 AC 9 ms
6,820 KB
testcase_61 AC 559 ms
6,816 KB
testcase_62 AC 106 ms
6,816 KB
testcase_63 AC 412 ms
6,816 KB
testcase_64 AC 1,077 ms
6,816 KB
testcase_65 AC 449 ms
6,820 KB
testcase_66 AC 3 ms
6,820 KB
testcase_67 AC 686 ms
6,816 KB
testcase_68 AC 768 ms
6,816 KB
testcase_69 AC 531 ms
6,820 KB
testcase_70 AC 86 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<set>
#include<map>
#include<string>
#include<iomanip>
#include<cmath>
#include<stack>
#include<tuple>

int main()
{
	std::map<int, int> map;
	map[0] = -1;
	int N;
	std::cin >> N;
	std::vector<int> vec(N);
	for (int i = 1; i <= N; ++i)
	{
		int V;
		std::cin >> V;
		vec[i - 1] = V;
		for (auto&[sum, prev] : map)
		{
			if (prev < i - 1 && !map.count(sum + V))
			{
				map[sum + V] = i;
			}
		}
	}
	auto[s0, p0] = *map.rbegin();
	auto s = s0;
	auto p = p0;
	std::cout << s << std::endl;
	std::stack<int> stack;
	while (p != -1)
	{
		stack.emplace(p);
		s -= vec[p - 1];
		p = map[s];
	}
	while (stack.size())
	{
		auto t = stack.top();
		stack.pop();
		std::cout << t << " ";
	}
	std::cout << std::endl;
}
0