/*
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;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 4.705 ms | 11 MB + 508 KB | Accepted | Score: 4 | 显示更多 |
| Testcase #2 | 4.858 ms | 11 MB + 508 KB | Accepted | Score: 4 | 显示更多 |
| Testcase #3 | 4.857 ms | 11 MB + 508 KB | Accepted | Score: 4 | 显示更多 |
| Testcase #4 | 5.121 ms | 11 MB + 508 KB | Accepted | Score: 4 | 显示更多 |
| Testcase #5 | 5.409 ms | 11 MB + 508 KB | Accepted | Score: 4 | 显示更多 |
| Testcase #6 | 6.096 ms | 11 MB + 508 KB | Accepted | Score: 4 | 显示更多 |
| Testcase #7 | 7.967 ms | 11 MB + 512 KB | Accepted | Score: 4 | 显示更多 |
| Testcase #8 | 26.187 ms | 30 MB + 320 KB | Runtime Error | Score: 0 | 显示更多 |
| Testcase #9 | 156.853 ms | 50 MB + 528 KB | Runtime Error | Score: 0 | 显示更多 |
| Testcase #10 | 153.604 ms | 50 MB + 528 KB | Runtime Error | Score: 0 | 显示更多 |
| Testcase #11 | 1 s | 85 MB + 204 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #12 | 1 s | 84 MB + 884 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #13 | 1 s | 84 MB + 884 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #14 | 1 s | 84 MB + 536 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #15 | 1 s | 84 MB + 536 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #16 | 1 s | 84 MB + 884 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #17 | 1 s | 84 MB + 884 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #18 | 1 s | 84 MB + 536 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #19 | 1 s | 84 MB + 536 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #20 | 1 s | 85 MB + 204 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #21 | 1 s | 84 MB + 884 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #22 | 1 s | 84 MB + 536 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #23 | 1 s | 85 MB + 204 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #24 | 1 s | 84 MB + 192 KB | Time Limit Exceeded | Score: 0 | 显示更多 |
| Testcase #25 | 1 s | 84 MB + 536 KB | Time Limit Exceeded | Score: 0 | 显示更多 |