# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
216929 | bharat2002 | 컴퓨터 네트워크 (BOI14_network) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*input
*/
#include "network.h"
#include<bits/stdc++.h>
using namespace std;
const int N=1e3 + 100;
const int mod=1e9 + 7;
#define int long long
const int inf=1e18;
#define pii pair<int, int>
#define f first
#define s second
#define mp make_pair
#define FOR(i, n) for(int i=1;i<=n;i++)
#define TRACE(x) cerr << #x << " = " << x << endl
//Trace prints the name of the variable and the value.
int dista[N], distb[N];
bool sf(int a, int b)
{
return dista[a]<dista[b];
}
void findRoute(int n, int a, int b)
{
for(int i=1;i<=n;i++)
{
if(i==a) continue;
dista[i]=ping(i, a) +1;
}
for(int i=1;i<=n;i++)
{
if(i==b) continue;
distb[i]=ping(i, b) + 1;
}
vector<int> vals;
for(int i=1;i<=n;i++)
{
if(dista[i] + distb[i]==dista[b])
{
vals.push_back(i);
}
}
sort(vals.begin(), vals.end());
for(auto i:vals)
{
travelTo(i);
}
}