제출 #538337

#제출 시각아이디문제언어결과실행 시간메모리
538337cOny235Hotspot (NOI17_hotspot)C++14
100 / 100
686 ms1232 KiB
#include<bits/stdc++.h>
using namespace std;

void DBG() { cerr << "]\n"; }
template<class H, class... T> void DBG(H h, T... t) {
    cerr << h; if(sizeof...(t)) cerr << ", ";
    DBG(t...);
}
#ifdef LOCAL
#define dbg(...) cerr << "[" << #__VA_ARGS__ << "]: [", DBG(__VA_ARGS__)
#else
#define dbg(...) 0
#endif // LOCAL

#define FOR(i,a,b) for(int i = (a) ; i<(b) ; i++)
#define F0R(i,a) FOR(i,0,a)
#define ROF(i,a,b) for(int i = (b)-1 ; i>=(a) ; i--)
#define R0F(i,a) ROF(i,0,a)
#define each(e,a) for(auto &e : (a))
#define sz(v) (int)(v).size()
#define all(v) (v).begin(),(v).end()
#define rall(v) (v).rbegin(),(v).rend()
#define pb push_back
#define tcT template<class T
#define nl "\n"

using ll = long long;
using vi = vector<int>;
using pi = pair<int,int>;
tcT> using V = vector<T>;
tcT> using pqg = priority_queue<T,vector<T>,greater<T>>;

void setIO(string NAME = "") {
    cin.tie(0)->sync_with_stdio(0);
    if(sz(NAME)) {
        freopen((NAME + ".inp").c_str(),"r",stdin);
        freopen((NAME + ".out").c_str(),"w",stdout);
    }
}

const int MX = 5e3+5;
int N, M, K;
vi adj[MX];
pi per[MX];
int da[MX], db[MX], cnta[MX], cntb[MX];
long double su[MX];

void bfs(int st, int d[], int cnt[]) {
    F0R(i,N) {
        d[i] = -1;
        cnt[i] = 0;
    }
    queue<int> q;
    q.push(st); d[st] = 0; cnt[st] = 1;
    while(sz(q)) {
        int u = q.front(); q.pop();
        each(v, adj[u]) {
            if(d[v] == -1) {
                d[v] = d[u] + 1;
                cnt[v] = cnt[u];
                q.push(v);
            }
            else if(d[v] == d[u] + 1) {
                cnt[v] += cnt[u];
            }
        }
    }
}

void solve() {
    cin>>N>>M;
    F0R(_,M) {
        int u,v; cin>>u>>v;
        adj[u].pb(v);
        adj[v].pb(u);
    }
    cin>>K;
    F0R(i,K) cin>>per[i].first>>per[i].second;
    F0R(i,N) su[i] = 0;
    F0R(i,K) {
        bfs(per[i].first, da, cnta);
        bfs(per[i].second, db, cntb);
        F0R(j,N) if(da[j] + db[j] == da[per[i].second]) {
            ll Cnt = 1LL*cnta[j]*cntb[j];
            su[j] += ((long double)Cnt/cnta[per[i].second]);
        }
    }
    int ans = -1;
    F0R(i,N) if(ans<0 || su[ans] < su[i]) ans = i;
    cout << ans << nl;
}

int main() {
    setIO();

    int t=1;
    //cin>>t;
    while(t-->0) {
        solve();
    }

    return 0;
}

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

hotspot.cpp: In function 'void setIO(std::string)':
hotspot.cpp:36:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   36 |         freopen((NAME + ".inp").c_str(),"r",stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
hotspot.cpp:37:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   37 |         freopen((NAME + ".out").c_str(),"w",stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...