// Problem: No.2617 容量3のナップザック // Contest: yukicoder // URL: https://yukicoder.me/problems/no/2617 // Memory Limit: 512 MB // Time Limit: 2000 ms #include #define debug(x) cerr<<(#x)<<" "<<(x)< #define rep(i,a,b) for(ll i=(a);i<=(b);++i) #define per(i,a,b) for(ll i=(a);i>=(b);--i) using namespace std; bool Mbe; ll read(){ ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } void write(ll x){ if(x<0)putchar('-'),x=-x; if(x>9)write(x/10); putchar(x%10+'0'); } const ll N=2e6+9; ll n,k,seed,A,B,m,v[N],f[N],w[N],b1[N],b2[N],b3[N],t1,t2,t3,p1,p2,c,sum,ans,sum1[N],sum2[N]; ll F(ll k,ll x){ return sum1[min(t1,3*k-x*2)]+sum2[x]; } ll solve(ll k){ ll l=0,r=min(t2,k); while(r-l>20){ ll lmid=l+(r-l)/3; ll rmid=r-(r-l)/3; if(F(k,lmid)>F(k,rmid))r=rmid; else l=lmid; } ll res=0; rep(i,l,r)res=max(res,F(k,i)); return res; } bool Med; int main(){ cerr<