제출 #477989

#제출 시각아이디문제언어결과실행 시간메모리
477989tar_palantirTorrent (COI16_torrent)C++17
0 / 100
4 ms7376 KiB
#include<bits/stdc++.h> #define int long long #define task "copydata" using namespace std; using ii=pair<int,int>; const int mn=3e5+11,inf=0x3f3f3f3f3f3f3f3f; const int mod=1e9+7; template<typename t> bool ckmax(t& target,const t& source){ return target<source ? target=source,1 : 0; } template<typename t> bool ckmin(t& target,const t& source){ return target>source ? target=source,1 : 0; } int n,a,b; int p[mn]; vector<int>adj[mn]; void prevs(int u,int pre){ for(int v:adj[u])if(v!=pre) p[v]=u,prevs(v,u); } int dp[mn]; int calc(int u,int pre,int barr){ vector<int>cur; for(int v:adj[u])if(v!=pre && v!=barr) cur.emplace_back(calc(v,u,barr)); sort(cur.begin(),cur.end(),greater<int>()); for(int i=0;i<cur.size();i++) ckmax(dp[u],i+1+cur[i]); return dp[u]; } ii eval(int k){ ii res; memset(dp,0,sizeof(dp)); res.first=calc(b,-1,p[k]); memset(dp,0,sizeof(dp)); res.second=calc(a,-1,k); return res; } int32_t main() { cin.tie(0)->sync_with_stdio(0); #ifdef _TPR_ freopen("t.inp","r",stdin); freopen("t.out","w",stdout); #else freopen(task".inp","r",stdin); freopen(task".out","w",stdout); #endif scanf("%lld%lld%lld",&n,&a,&b); for(int i=1,u,v;i<n;i++){ scanf("%lld%lld",&u,&v); adj[u].emplace_back(v); adj[v].emplace_back(u); } prevs(a,-1); vector<int>tmp;int z=b; while(z)tmp.emplace_back(z),z=p[z]; int l=0,r=(int)tmp.size()-2,ans=-1; ii res(inf,inf); while(l<=r){ int mid=l+r>>1; ii cur=eval(tmp[mid]); if(cur.first<=cur.second)res=cur,ans=mid,l=mid+1; else r=mid-1; } int true_res=max(res.first,res.second); if(ans+1<tmp.size()){ ii cur=eval(tmp[ans+1]); ckmin(true_res,max(cur.first,cur.second)); } cout<<true_res; }

컴파일 시 표준 에러 (stderr) 메시지

torrent.cpp: In function 'long long int calc(long long int, long long int, long long int)':
torrent.cpp:37:18: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   37 |     for(int i=0;i<cur.size();i++)
      |                 ~^~~~~~~~~~~
torrent.cpp: In function 'int32_t main()':
torrent.cpp:76:18: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   76 |         int mid=l+r>>1;
      |                 ~^~
torrent.cpp:83:13: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   83 |     if(ans+1<tmp.size()){
      |        ~~~~~^~~~~~~~~~~
torrent.cpp:59:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   59 |         freopen(task".inp","r",stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
torrent.cpp:60:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   60 |         freopen(task".out","w",stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
torrent.cpp:62:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   62 |     scanf("%lld%lld%lld",&n,&a,&b);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
torrent.cpp:64:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   64 |         scanf("%lld%lld",&u,&v);
      |         ~~~~~^~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...