結果

問題 No.2617 容量3のナップザック
ユーザー ゆにぽけゆにぽけ
提出日時 2024-01-26 23:34:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 1,815 bytes
コンパイル時間 1,684 ms
コンパイル使用メモリ 138,420 KB
実行使用メモリ 89,380 KB
最終ジャッジ日時 2024-09-28 09:09:12
合計ジャッジ時間 7,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 181 ms
40,128 KB
testcase_13 AC 136 ms
28,824 KB
testcase_14 AC 168 ms
36,980 KB
testcase_15 AC 92 ms
20,048 KB
testcase_16 AC 203 ms
48,352 KB
testcase_17 AC 138 ms
29,624 KB
testcase_18 AC 124 ms
26,188 KB
testcase_19 AC 23 ms
7,776 KB
testcase_20 AC 123 ms
26,276 KB
testcase_21 AC 86 ms
20,668 KB
testcase_22 AC 142 ms
29,564 KB
testcase_23 AC 174 ms
35,536 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 113 ms
25,288 KB
testcase_26 AC 219 ms
55,396 KB
testcase_27 AC 71 ms
17,640 KB
testcase_28 AC 7 ms
5,376 KB
testcase_29 AC 62 ms
15,056 KB
testcase_30 AC 134 ms
27,264 KB
testcase_31 AC 146 ms
32,008 KB
testcase_32 AC 156 ms
33,916 KB
testcase_33 AC 184 ms
37,328 KB
testcase_34 AC 201 ms
41,172 KB
testcase_35 AC 167 ms
34,684 KB
testcase_36 AC 400 ms
89,380 KB
testcase_37 AC 201 ms
41,688 KB
testcase_38 AC 152 ms
31,996 KB
testcase_39 AC 207 ms
43,504 KB
testcase_40 AC 180 ms
36,304 KB
testcase_41 AC 97 ms
35,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <array>
#include <iterator>
#include <string>
#include <cctype>
#include <cstring>
#include <cstdlib>
#include <cassert>
#include <cmath>
#include <ctime>
#include <iomanip>
#include <numeric>
#include <stack>
#include <queue>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <bitset>
#include <random>
#include <utility>
#include <functional>
using namespace std;
void Main()
{
	int N,K;
	long long s,a,b,m;
	cin >> N >> K >> s >> a >> b >> m;
	vector<long long> f(2 * N);
	f[0] = s;
	for(int i = 0;i + 1 < 2 * N;i++)
	{
		f[i + 1] = (a * f[i] + b) % m;
	}
	vector<vector<long long>> G(4);
	for(int i = 0;i < N;i++)
	{
		int w = f[i] % 3 + 1;
		long long v = w * f[N + i];
		G[w].push_back(v);
	}
	for(int i = 1;i <= 3;i++)
	{
		if(i == 1)
		{
			while(G[i].size() < 3 * K)
			{
				G[i].push_back(0ll);
			}
		}
		else
		{
			while(G[i].size() < K)
			{
				G[i].push_back(0ll);
			}
		}
		sort(G[i].rbegin(),G[i].rend());
	}
	long long ans = 0;
	long long S3 = 0;
	vector<vector<long long>> S(3);
	for(int i = 1;i <= 2;i++)
	{
		S[i].resize(G[i].size() + 1);
		for(int j = 0;j < (int)G[i].size();j++)
		{
			S[i][j + 1] = S[i][j] + G[i][j];
		}
	}
	for(int i = 0;i <= K;i++)
	{
		long long cur = S3;
		int ng = -1,ok = K - i;
		while(ok - ng > 1)
		{
			int mid = (ok + ng) / 2;
			long long df = G[2][mid] - (G[1][3 * (K - i) - 2 * mid - 2] + G[1][3 * (K - i) - 2 * mid - 1]);
			if(df <= 0)
			{
				ok = mid;
			}
			else
			{
				ng = mid;
			}
		}
		cur += S[2][ok] + S[1][3 * (K - i) - 2 * ok];
		ans = max(ans,cur);
		if(i < K)
		{
			S3 += G[3][i];
		}
	}
	cout << ans << endl;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	/* cin >> tt; */
	while(tt--) Main();
}
0