提交记录 9816


用户 题目 状态 得分 用时 内存 语言 代码长度
QAQAutoMaton noi19c. 【NOI2019】序列 Runtime Error 28 1 s 87244 KB C++11 3.70 KB
提交时间 评测时间
2019-07-16 17:10:34 2020-08-01 01:53:52
/*
Author: QAQ Automaton
Lang: C++
Prog: sequence.cpp
Mail: lk@qaq-am.com
Blog: https://www.qaq-am.com/
*/
#include<bits/stdc++.h>
#define int ll
#define debug(...) fprintf(stderr,__VA_ARGS__)
#define DEBUG printf("Passing [%s] in LINE %d\n",__FUNCTION__,__LINE__)
#define Debug debug("Passing [%s] in LINE %d\n",__FUNCTION__,__LINE__)
#define all(x) x.begin(),x.end()
#define x first
#define y second
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define inf 0x3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f3f
const double eps=1e-8;
const double pi=acos(-1.0);
template<class T>int chkmin(T &a,T b){return a>b?a=b,1:0;}
template<class T>int chkmax(T &a,T b){return a<b?a=b,1:0;}
template<class T>T sqr(T a){return a*a;}
template<class T>T mmin(T a,T b){return a<b?a:b;}
template<class T>T mmax(T a,T b){return a>b?a:b;}
template<class T>T aabs(T a){return a<0?-a:a;}
template<class T>int dcmp(T a,T b){return a>b;}
template<int *a>int cmp_a(int x,int y){return a[x]<a[y];}
#define min mmin
#define max mmax
#define abs aabs
namespace io {
	const int SIZE = (1 << 21) + 1;
	char ibuf[SIZE], *iS, *iT, obuf[SIZE], *oS = obuf, *oT = oS + SIZE - 1, c, qu[55]; int f, qr;
	// getchar
	#define gc() (iS == iT ? (iT = (iS = ibuf) + fread (ibuf, 1, SIZE, stdin), (iS == iT ? EOF : *iS ++)) : *iS ++)
	// print the remaining part
	inline void flush () {
		fwrite (obuf, 1, oS - obuf, stdout);
		oS = obuf;
	}
	// putchar
	inline void putc (char x) {
		*oS ++ = x;
		if (oS == oT) flush ();
	}
	// input a signed integer
	inline bool read (signed &x) {
		for (f = 1, c = gc(); c < '0' || c > '9'; c = gc()) if (c == '-') f = -1;else if(c==EOF)return 0;
		for (x = 0; c <= '9' && c >= '0'; c = gc()) x = x * 10 + (c & 15); x *= f;
		return 1;
	}

	inline bool read (long long &x) {
		for (f = 1, c = gc(); c < '0' || c > '9'; c = gc()) if (c == '-') f = -1;else if(c==EOF)return 0;
		for (x = 0; c <= '9' && c >= '0'; c = gc()) x = x * 10 + (c & 15); x *= f;
		return 1;
	}
	inline bool read (char &x) {
		x=gc();
		return x!=EOF;
	}
	inline bool read(char *x){
		while((*x=gc())=='\n' || *x==' '||*x=='\r')if(*x==EOF)return 0;
		while(!(*x=='\n'||*x==' '||*x=='\r'))*(++x)=gc();
		*x=0;
		return 1;
	}
	template<typename A,typename ...B>
	inline bool read(A &x,B &...y){
		return read(x)&&read(y...);
	}
	// print a signed integer
	inline bool write (signed x) {
		if (!x) putc ('0'); if (x < 0) putc ('-'), x = -x;
		while (x) qu[++ qr] = x % 10 + '0',  x /= 10;
		while (qr) putc (qu[qr --]);
		return 0;
	}

	inline bool write (long long x) {
		if (!x) putc ('0'); if (x < 0) putc ('-'), x = -x;
		while (x) qu[++ qr] = x % 10 + '0',  x /= 10;
		while (qr) putc (qu[qr --]);
		return 0;
	}
	inline bool write (char x) {
		putc(x);
		return 0;
	}
	inline bool write(const char *x){
		while(*x){putc(*x);++x;}
		return 0;
	}
	inline bool write(char *x){
		while(*x){putc(*x);++x;}
		return 0;
	}
	template<typename A,typename ...B>
	inline bool write(A x,B ...y){
		return write(x)||write(y...);
	}
	//no need to call flush at the end manually!
	struct Flusher_ {~Flusher_(){flush();}}io_flusher_;
}
using io :: read;
using io :: putc;
using io :: write;
int a[155],b[155];
int f[35][35][35][35];
signed main(){
	int t,n,k,xl;
	read(t);
	for(;t;--t){
		read(n,k,xl);
		for(int i=1;i<=n;++i)read(a[i]);
		for(int i=1;i<=n;++i)read(b[i]);
		memset(f,-0x3f,sizeof(f));
		f[0][0][0][0]=0;
		for(int i=1;i<=n;++i)for(int l=0;l<=i;++l)for(int j=0;j<=i-l;++j)for(int k=0;k<=i-l;++k){
			f[i][j][k][l]=f[i-1][j][k][l];
			if(l)chkmax(f[i][j][k][l],f[i-1][j][k][l-1]+a[i]+b[i]);
			if(j)chkmax(f[i][j][k][l],f[i-1][j-1][k][l]+a[i]);
			if(k)chkmax(f[i][j][k][l],f[i-1][j][k-1][l]+b[i]);
		}
		int ans=-inf;
		for(int l=xl;l<=k;++l)chkmax(ans,f[n][k-l][k-l][l]);
		write(ans,'\n');
	}
	return 0;
}


CompilationN/AN/ACompile OKScore: N/A

Testcase #14.705 ms11 MB + 508 KBAcceptedScore: 4

Testcase #24.858 ms11 MB + 508 KBAcceptedScore: 4

Testcase #34.857 ms11 MB + 508 KBAcceptedScore: 4

Testcase #45.121 ms11 MB + 508 KBAcceptedScore: 4

Testcase #55.409 ms11 MB + 508 KBAcceptedScore: 4

Testcase #66.096 ms11 MB + 508 KBAcceptedScore: 4

Testcase #77.967 ms11 MB + 512 KBAcceptedScore: 4

Testcase #826.187 ms30 MB + 320 KBRuntime ErrorScore: 0

Testcase #9156.853 ms50 MB + 528 KBRuntime ErrorScore: 0

Testcase #10153.604 ms50 MB + 528 KBRuntime ErrorScore: 0

Testcase #111 s85 MB + 204 KBTime Limit ExceededScore: 0

Testcase #121 s84 MB + 884 KBTime Limit ExceededScore: 0

Testcase #131 s84 MB + 884 KBTime Limit ExceededScore: 0

Testcase #141 s84 MB + 536 KBTime Limit ExceededScore: 0

Testcase #151 s84 MB + 536 KBTime Limit ExceededScore: 0

Testcase #161 s84 MB + 884 KBTime Limit ExceededScore: 0

Testcase #171 s84 MB + 884 KBTime Limit ExceededScore: 0

Testcase #181 s84 MB + 536 KBTime Limit ExceededScore: 0

Testcase #191 s84 MB + 536 KBTime Limit ExceededScore: 0

Testcase #201 s85 MB + 204 KBTime Limit ExceededScore: 0

Testcase #211 s84 MB + 884 KBTime Limit ExceededScore: 0

Testcase #221 s84 MB + 536 KBTime Limit ExceededScore: 0

Testcase #231 s85 MB + 204 KBTime Limit ExceededScore: 0

Testcase #241 s84 MB + 192 KBTime Limit ExceededScore: 0

Testcase #251 s84 MB + 536 KBTime Limit ExceededScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-03-30 16:44:16 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠