結果

問題 No.2617 容量3のナップザック
ユーザー kmjpkmjp
提出日時 2024-01-27 00:48:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,805 bytes
コンパイル時間 2,633 ms
コンパイル使用メモリ 213,968 KB
実行使用メモリ 245,328 KB
最終ジャッジ日時 2024-09-28 09:21:43
合計ジャッジ時間 25,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 991 ms
117,420 KB
testcase_13 AC 389 ms
68,128 KB
testcase_14 AC 912 ms
108,896 KB
testcase_15 AC 325 ms
53,464 KB
testcase_16 AC 1,323 ms
130,188 KB
testcase_17 AC 690 ms
88,928 KB
testcase_18 AC 551 ms
76,296 KB
testcase_19 AC 53 ms
10,936 KB
testcase_20 AC 375 ms
63,912 KB
testcase_21 AC 444 ms
57,712 KB
testcase_22 AC 448 ms
73,212 KB
testcase_23 AC 835 ms
107,044 KB
testcase_24 AC 26 ms
8,220 KB
testcase_25 AC 438 ms
47,296 KB
testcase_26 AC 1,393 ms
138,736 KB
testcase_27 AC 362 ms
47,936 KB
testcase_28 AC 15 ms
6,312 KB
testcase_29 AC 138 ms
20,820 KB
testcase_30 AC 425 ms
71,688 KB
testcase_31 AC 787 ms
95,196 KB
testcase_32 AC 532 ms
99,836 KB
testcase_33 AC 867 ms
111,908 KB
testcase_34 AC 1,040 ms
126,800 KB
testcase_35 AC 722 ms
101,308 KB
testcase_36 TLE -
testcase_37 AC 1,062 ms
128,672 KB
testcase_38 AC 480 ms
79,048 KB
testcase_39 AC 809 ms
81,316 KB
testcase_40 AC 818 ms
109,076 KB
testcase_41 AC 1,280 ms
185,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

ll N,K,seed,A,B,M;
ll F[2020202];
vector<ll> W[4];
multiset<ll> L[3],R[3];
ll S[3];
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K>>seed>>A>>B>>M;
	F[0]=seed;
	FOR(i,2*N) {
		F[i+1]=(F[i]*A+B)%M;
	}
	FOR(i,N) {
		x=F[i]%3+1;
		W[x].push_back(F[N+i]*x);
	}
	FOR(i,K+1) W[2].push_back(0);
	FOR(i,3*K+10) W[1].push_back(0);
	FOR(i,4) {
		sort(ALL(W[i]));
		reverse(ALL(W[i]));
	}
	FOR(i,3) {
		FOR(j,W[3].size()) {
			R[i].insert(W[3][j]);
		}
		FOR(j,K+1) {
			ll a=W[1][i+j*3]+W[1][i+j*3+1]+W[1][i+j*3+2];
			R[i].insert(a);
		}
	}
	ll ma=0;
	ll sum=0;
	FOR(i,K+1) {
		if(i) sum+=W[2][i-1]+W[1][i-1];
		x=i%3;
		if(i>=3) {
			ll a=W[1][i-1]+W[1][i-2]+W[1][i-3];
			if(L[x].count(a)) {
				L[x].erase(L[x].find(a));
				S[x]-=a;
			}
		}
		while(L[x].size()<K-i) {
			ll a=*R[x].rbegin();
			S[x]+=a;
			R[x].erase(R[x].find(a));
			L[x].insert(a);
		}
		while(L[x].size()>K-i) {
			ll a=*L[x].begin();
			S[x]-=a;
			L[x].erase(L[x].begin());
		}
		ma=max(ma,sum+S[x]);
	}
	cout<<ma<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0