# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
385526 | The_Bitch | Jelly Flavours (IOI20_jelly) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "jelly.h"
#define int long long
#define pb push_back
#define F first
#define S second
using namespace std;
const int N=1e6,M=1e4;
int mem[203][600][600];
long long minn=1e18,mux=-1e18;
int n,x,y;
int a[N],b[N];
int dp(int i,int x,int y){
if(i==n)return 0;
if(mem[i][x][y]!=-1)return mem[i][x][y];
if(x>=a[i]&&y>=b[i])return mem[i][x][y]=max({dp(i+1,x-a[i],y)+1,dp(i+1,x,y-b[i])+1,dp(i+1,x,y)});
else if(x>=a[i]&&y<b[i])return mem[i][x][y]=max(dp(i+1,x-a[i],y)+1,dp(i+1,x,y));
else if(x<a[i]&&y>=b[i])return mem[i][x][y]=max(dp(i+1,x,y-b[i])+1,dp(i+1,x,y));
else return mem[i][x][y]=dp(i+1,x,y);
}
int find_maximum_unique(int x, int y, std::vector<int> a, std::vector<int> b) {
n = a.size();
for(int i=0;i<n+2;i++)
for(int j=0;j<x+2;j++)
for(int k=0;k<y+2;k++)
mem[i][j][k]=-1;