제출 #607551

#제출 시각아이디문제언어결과실행 시간메모리
607551MohamedFaresNebili철로 (IOI14_rail)C++14
0 / 100
102 ms98464 KiB
#include <bits/stdc++.h>
#include "rail.h"
/// #pragma GCC optimize ("Ofast")
/// #pragma GCC target ("avx2")
/// #pragma GCC optimize("unroll-loops")
 
            using namespace std;
 
            using ll = long long;
            using ld = long double;
 
            #define ff first
            #define ss second
            #define pb push_back
            #define all(x) (x).begin(), (x).end()
            #define lb lower_bound
 
            const int MOD = 998244353;
 
            int DP[5005][5005];
            int query(int i, int j) {
                if(i == j) return 0;
                if(DP[i][j] != -1)
                    return DP[i][j];
                return DP[i][j] = getDistance(i, j);
            }
 
            void findLocation(int n, int first, int location[], int stype[]) {
                location[0] = first;
                stype[0] = 1; int D = -1;
              	memset(DP, -1, sizeof DP);
                for(int l = 1; l < n; l++) {
                    if(D == -1 || query(0, l) < query(0, D)) D = l;
                }
                for(int l = 1; l < n; l++) {
                    int A = query(0, l), B = query(D, l), C = query(0, D);
                    if(B + C == A) stype[l] = 1, location[l] = first - A + B;
                    else stype[l] = 2, location[l] = first + A;
                }
            }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...