제출 #1316594

#제출 시각아이디문제언어결과실행 시간메모리
1316594shtnMuseum (CEOI17_museum)C++20
0 / 100
833 ms1114112 KiB
#include<bits/stdc++.h> #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/tree_policy.hpp> // #ifndef ONLINE_JUDGE // #include "00_debug.h" // #else // #define debug(x) // #endif #define endl '\n' #define all(a) a.begin(), a.end() typedef long long ll; using namespace std; using namespace __gnu_pbds; template<class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; template<class T> using ordered_multiset = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>; void solve(){ int n,k,x; cin>>n>>k>>x; vector<vector<pair<int,int>>>g(n); for(int i=1;i<n;i++){ int u,v,w; cin>>u>>v>>w; u--,v--; g[u].push_back({v,w}); g[v].push_back({u,w}); } vector<vector<vector<int>>>dp(n,vector<vector<int>>(n+1,vector<int>(2,1e9))); vector<int>sz(n); vector<int>nsz(n); function<void(int,int)>dfs1=[&](int node,int parent){ nsz[node]=1; for(auto child:g[node]){ if(child.first==parent)continue; dfs1(child.first,node); nsz[node]+=nsz[child.first]; } }; dfs1(x,-1); function<void(int,int)>dfs=[&](int node,int parent){ dp[node][1][0]=dp[node][1][1]=0; sz[node]=1; for(auto child:g[node]){ if(child.first==parent)continue; dfs(child.first,node); auto ndp=dp[node]; for(int i=1;i<=sz[node];i++){ for(int j=1;j<=sz[child.first];j++){ ndp[i+j][0]=min(ndp[i+j][0],dp[node][i][1]+dp[child.first][j][0]+child.second); ndp[i+j][1]=min(ndp[i+j][1],dp[node][i][1]+dp[child.first][j][1]+2*child.second); } } sz[node]+=sz[child.first]; swap(ndp,dp[node]); } }; x--; dfs(x,-1); cout<<min(dp[x][k][0],dp[x][k][1])<<endl; } int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); // #ifndef ONLINE_JUDGE // freopen("Input.txt","r",stdin); // freopen("output.txt","w",stdout); // freopen("Error.txt","w",stderr); // #endif int t=1; // cin >> t; while(t--){ solve(); } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...