# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
105795 | gs18103 | 먼 별 (KOI16_dist) | C++98 | 4 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
long long arr[1010][4];
long long ans;
int n, T;
long long dp[10101010];
long long cal_dis(int t)
{
if(dp[t] != 0) return dp[t];
long long dis;
for(int i = 0; i < n; i++)
{
for(int j = 0; j < n; j++)
{
if(i == j) continue;
dis = max(dis, (arr[i][0]-arr[j][0]+t*(arr[i][2]-arr[j][2]))*(arr[i][0]-arr[j][0]+t*(arr[i][2]-arr[j][2]))+
(arr[i][1]-arr[j][1]+t*(arr[i][3]-arr[j][3]))*(arr[i][1]-arr[j][1]+t*(arr[i][3]-arr[j][3])));
}
}
return dp[t] = dis;
}
int search(int s, int e)
{
if(s == e)
{
return s;
}
if(s + 1 == e)
{
if(cal_dis(s) > cal_dis(e)) return e;
else return s;
}
if(s + 2 == e)
{
long long d = min(cal_dis(s), min(cal_dis(s+1), cal_dis(e)));
if(d == cal_dis(s)) return s;
if(d == cal_dis(s+1)) return s+1;
if(d == cal_dis(e)) return e;
}
int t1 = s + (e - s) / 3, t2 = s + ((e - s) * 2) / 3;
long long dis1 = cal_dis(t1), dis2 = cal_dis(t2);
if(dis1 < dis2) return search(s, t2-1);
else return search(t1+1, e);
}
int main()
{
scanf("%d %d", &n, &T);
for(int i = 0; i < n; i++)
for(int j = 0; j < 4; j++)
scanf("%lld", &arr[i][j]);
int ans = search(0, T);
printf("%d\n%lld", ans, cal_dis(ans));
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |