제출 #1105338

#제출 시각아이디문제언어결과실행 시간메모리
1105338modwweHotspot (NOI17_hotspot)C++17
38 / 100
4 ms848 KiB
#pragma GCC optimize("Ofast,unroll-loops") //#pragma GCC target("avx,avx2,sse,sse2") #include<bits/stdc++.h> #define int long long #define ll long long #define down cout<<'\n'; #define debug cout<<" cdasdcda\n"; #define NHP ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0); #define modwwe int t;cin>>t; while(t--) #define bit(i,j) (i>>j&1) #define sobit(a) __builtin_popcountll(a) #define task "test" #define fin(x) freopen(x".inp","r",stdin) #define fou(x) freopen(x".out","w",stdout) #define pb push_back #define checktime cerr << (double)clock() / CLOCKS_PER_SEC * 1000 << " ms"; using namespace std; const int inf=1e9; void phongbeo(); const int mod2=1e9+7; const int mod1=998244353; struct icd { int a,b; }; struct ib { int a; int b; }; struct ic { int a,b,c; }; struct id { int a,b,c,d; }; struct ie { int a,b,c, d,e,f; }; int n,m,s1,s2,s4,s3,sf,k,r,mid,s5,s6,mx,s7,s8,s9,mx2,res,dem2=0,dem=0,l; int i,s10,s12; int el=29; main() { if(fopen(task".inp","r")) { fin(task); fou(task); } NHP /// cin>>s1; // modwwe phongbeo(),down /// checktime } long double cost[5001]; deque<ib> p; long double ff; vector<int> v[5001]; ib c[5001]; ib d[5001]; void bfs(int x,ib c[]) { c[x]= {0,1}; p.push_back({0,x}); while(!p.empty()) { ib x=p.front(); p.pop_front(); for(auto f:v[x.b]) if(c[f].a<0)c[f]= {x.a+1,c[x.b].b},p.push_back({x.a+1,f}); else if(c[f].a==c[x.b].a+1)c[f].b+=c[x.b].b; } } void phongbeo() { cin>>n>>m; for(int i=1; i<=m; i++) cin>>l>>r,v[l].pb(r), v[r].pb(l); cin>>k; while(k--) { cin>>l>>r; for(int i=0; i<n; i++) c[i]= {-inf,0},d[i]= {-inf,0}; bfs(l,c); bfs(r,d); for(int i=1; i<=n; i++) if(d[l].a==c[i].a+d[i].a) cost[i]=cost[i]+(long double)(1.0*c[i].b*d[i].b)/(1.0*c[l].b); } s2=0; for(int i=0; i<n; i++) { if(cost[i]>ff) s2=i,ff=cost[i]; } cout<<s2; }

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

hotspot.cpp:47:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   47 | main()
      | ^~~~
hotspot.cpp: In function 'int main()':
hotspot.cpp:13:23: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 | #define fin(x) freopen(x".inp","r",stdin)
      |                ~~~~~~~^~~~~~~~~~~~~~~~~~~
hotspot.cpp:51:9: note: in expansion of macro 'fin'
   51 |         fin(task);
      |         ^~~
hotspot.cpp:14:23: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 | #define fou(x) freopen(x".out","w",stdout)
      |                ~~~~~~~^~~~~~~~~~~~~~~~~~~~
hotspot.cpp:52:9: note: in expansion of macro 'fou'
   52 |         fou(task);
      |         ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...