# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
120727 | MvC | 철로 (IOI14_rail) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC target("avx2")
#pragma GCC optimization("O3")
#pragma GCC optimization("unroll-loops")
#include<bits/stdc++.h>
#include "rail.h"
#define rc(x) return cout<<x<<endl,0
#define pb push_back
#define mkp make_pair
#define in insert
#define er erase
#define fd find
#define fr first
#define sc second
typedef long long ll;
typedef long double ld;
const ll INF=0x3f3f3f3f3f3f3f3f;
const ll llinf=(1LL<<62);
const int inf=(1<<30);
const ll nmax=1e5+50;
const int mod=1e9+7;
using namespace std;
int n,f,i,x,y;
int get(int x,int y)
{
return getDistance(x,y);
}
void findLocation(int N,int F,int bl[],int tp[])
{
n=N,f=F;
bl[0]=f,tp[0]=1;
for(i=0;i<n;i++)
{
for(j=i+1;j<n;j++)
{
d[i][j]=d[j][i]=get(i,j);
}
}
for(i=1;i<n;i++)
{
for(j=i+1;j<n;j++)
{
//if(i==j)continue;
if(d[0][i]+d[i][j]==d[0][j])
{
bl[i]=f+d[0][i];
tp[i]=2;
bl[j]=bl[i]-d[i][j];
tp[j]=1;
}
}
}
}
/*int main()
{
//freopen("sol.in","r",stdin);
//freopen("sol.out","w",stdout);
//mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
ios_base::sync_with_stdio(false);cin.tie(0);cerr.tie(0);cout.tie(0);
return 0;
}*/