Submission #1062077

# Submission time Handle Problem Language Result Execution time Memory
1062077 2024-08-16T18:26:07 Z Edu175 Closing Time (IOI23_closing) C++17
0 / 100
1000 ms 2097152 KB
#include "closing.h"
#include <bits/stdc++.h>
#define pb push_back
#define fst first
#define snd second
#define fore(i,a,b) for(ll i=a,jet=b;i<jet;++i)
#define SZ(x) ((int)x.size())
#define ALL(x) x.begin(),x.end()
#define mset(a,v) memset((a),(v),sizeof(a))
#define FIN ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define imp(v) {for(auto gdljh:v)cout<<gdljh<<" "; cout<<"\n";}
using namespace std;
typedef long long ll;
typedef pair<ll,ll> ii;
const ll MAXN=2e5+5,INF=1e15;

vector<ll> d[2];
ll b[MAXN][2];
ll n,k;
vector<ii> g[MAXN];
void dfs(ll x, vector<ll> &d){
	for(auto [y,w]:g[x])if(d[y]==-1){
		d[y]=d[x]+w;
		dfs(y,d);
	}
}
ll disjoint(){
	vector<ll>v;
	fore(i,0,n)v.pb(b[i][0]);
	sort(ALL(v));
	ll ki=0,res=0;
	// imp(v);
	fore(i,0,SZ(v)){
		if(ki+v[i]<=k)res++,ki+=v[i];
	}
	return res;
}
vector<ll>a;
ll dfs1(ll x, ll e, ll fa=-1){
	a.pb(x);
	if(x==e)return 1;
	for(auto [y,w]:g[x])if(y!=fa&&dfs1(y,e,x))return 1;
	a.pop_back();
return 0;
}
vector<vector<ll>>h;
ll m;
void dfs2(ll x, ll fa=-1){
	ll i=SZ(h)-1;
	if((i&&x==a[i-1])||(i<m-1&&x==a[i+1]))return;
	h[i].pb(x);
	for(auto [y,w]:g[x])if(y!=fa)dfs2(y,x);
}
vector<vector<ll>>val;
bool can(ll c){
	// cout<<"can "<<c<<":\n";
	vector<vector<ll>>dp(m+1,vector<ll>(c+1,INF));
	// fore(s,0,c+1)dp[m][s]=INF;
	dp[m][0]=0;
	for(ll i=m-1;i>=0;i--)fore(s,0,c+1){
		ll &res=dp[i][s];
		// res=INF;
		fore(j,1,SZ(val[i])){
			if(s>=j)res=min(res,val[i][j]+dp[i+1][s-j]);
		}
		// cout<<i<<" "<<s<<": "<<res<<"\n";
	}
	// cout<<dp[0][c]<<"\n\n";
	return dp[0][c]<=k;
}

int max_score(int N, int x, int y, long long K,
              std::vector<int> U, std::vector<int> V, std::vector<int> W)
{
	n=N,k=K;
	fore(i,0,n){
		g[i].clear();
	}
	h.clear();
	val.clear();
	a.clear();
	
	fore(i,0,n-1){
		g[U[i]].pb({V[i],W[i]});
		g[V[i]].pb({U[i],W[i]});
	}
	d[0]=d[1]=vector<ll>(n,-1);
	d[0][x]=0; dfs(x,d[0]);
	d[1][y]=0; dfs(y,d[1]);
	fore(i,0,n){
		auto &x=b[i][0],&y=b[i][1];
		x=d[0][i];
		y=d[1][i];
		if(x>y)swap(x,y);
		y-=x;
	}
	ll res=disjoint();
	dfs1(x,y);
    m=SZ(a);
	fore(i,0,m){
		h.pb({}),dfs2(a[i]);	
		auto &v=h.back();
		ll sz=SZ(v),dif=b[a[i]][1];
		vector<ll>ds;
		for(auto i:v)ds.pb(b[i][0]),assert(b[i][1]==dif);
		sort(ALL(ds));
		vector<ll>va(2*sz+1,INF);
		// cout<<"("<<sz<<") "; imp(ds); cout<<endl;
		fore(z,1,2*sz+1){
			ll sum=0;
			fore(j,1,sz+1){
				sum+=ds[j-1];
				ll dos=z-j;
				if(dos<0||dos>j)continue;
				va[z]=min(va[z],sum+dif*dos);
			}
		}
		cout<<i<<": "; imp(va);
		val.pb(va);
    }
    ll l=m,r=2*n;
	while(l<=r){
		ll m=(l+r)/2;
		if(can(m))l=m+1;
		else r=m-1;
	}
	// cout<<r<<" r\n";
	if(r>=m)res=max(res,r);
	
	
    return res;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1077 ms 2097152 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 6744 KB Possible tampering with the output
2 Halted 0 ms 0 KB -