제출 #38854

#제출 시각아이디문제언어결과실행 시간메모리
3885414kg철로 (IOI14_rail)C++11
100 / 100
125 ms836 KiB
#include "rail.h" #include <algorithm> #define N 5001 #define INF 999999999 using namespace std; int n, zd[N], zero; int rd[N], rw, r_num, lw, l_num; int L_len, R_len, S_len, S[N]; pair<int, int> L[N], R[N]; void findLocation(int _n, int _zero, int out1[], int out2[]) { int temp = INF, len; bool check; n = _n, zero = _zero; for (int i = 1; i < n; i++) { zd[i] = getDistance(0, i); if (temp > zd[i]) { temp = zd[i], r_num = i; rw = zero + temp; } } temp = rw - zero, lw = zero; for (int i = 1; i < n; i++) if (i != r_num) { rd[i] = getDistance(r_num, i); if (temp > rd[i]) temp = rd[i], lw = rw - rd[i], l_num = i; } out1[0] = zero, out2[0] = 1; out1[r_num] = rw, out2[r_num] = 2; out1[l_num] = lw, out2[l_num] = 1; for (int i = 1; i < n; i++) if (i != r_num && i != l_num) { if (rd[i] - (rw - lw) == zd[i] - (lw - zero)) { out1[i] = zero + zd[i], out2[i] = 2; R[++R_len] = { out1[i],i }; } else if (rd[i] + rw - zero == zd[i]) { out1[i] = rw - rd[i], out2[i] = 1; L[++L_len] = { -out1[i],i }; } } L[++L_len] = { -zero,0 }; sort(L + 1, L + L_len + 1), sort(R + 1, R + R_len + 1); temp = r_num, S[S_len = 1] = r_num; for (int i = 1; i <= R_len; i++) { len = getDistance(temp, R[i].second), check = true; for (int j = S_len; j >= 1 && check; j--) if (zd[R[i].second] == zd[temp] + len - (out1[temp] - S[j]) * 2) out1[R[i].second] = out1[temp] - len, out2[R[i].second] = 1, check = false; if (check) temp = R[i].second, S[++S_len] = out1[temp]; } temp = l_num, S[S_len = 1] = l_num; for (int i = 1; i <= L_len; i++) { len = getDistance(temp, L[i].second), check = true; for (int j = S_len; j >= 1 && check; j--) if (rd[L[i].second] == rd[temp] + len - (S[j] - out1[temp]) * 2) out1[L[i].second] = out1[temp] + len, out2[L[i].second] = 2, check = false; if (check) temp = L[i].second, S[++S_len] = out1[temp]; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...