제출 #593726

#제출 시각아이디문제언어결과실행 시간메모리
593726FatihSolak전선 연결 (IOI17_wiring)C++17
7 / 100
28 ms5844 KiB
#include "wiring.h" #include <bits/stdc++.h> #define N 205 using namespace std; long long dp[N][N]; int worstr[N]; int worstb[N]; vector<int> r,b; long long dist(int i,int j){ long long ret = abs(r[i] - b[j]); return ret; } long long min_total_length(vector<int> r_, vector<int> b_) { r = r_; b = b_; int n = r.size(),m = b.size(); for(int i = 0;i<n;i++){ if(b[0] < r[i]){ worstr[i] = max(worstr[i], abs(*prev(lower_bound(b.begin(),b.end(),r[i])) - r[i])); } if(r[i] < b[m-1]){ worstr[i] = max(worstr[i], abs(*lower_bound(b.begin(),b.end(),r[i]) - r[i])); } } for(int i = 0;i<m;i++){ if(r[0] < b[i]){ worstb[i] = max(worstb[i], abs(*prev(lower_bound(r.begin(),r.end(),b[i])) - b[i])); } if(b[i] < r[n-1]){ worstb[i] = max(worstb[i], abs(*lower_bound(r.begin(),r.end(),b[i]) - b[i])); } } for(int i = 0;i<n;i++){ for(int j = 0;j<m;j++){ dp[i][j] = 1e18; } } dp[0][0] = abs(r[0] - b[0]); for(int i = 0;i<n;i++){ for(int j = 0;j<m;j++){ if(i) dp[i][j] = min(dp[i][j],dp[i-1][j] + dist(i,j)); if(j) dp[i][j] = min(dp[i][j],dp[i][j-1] + dist(i,j)); if(i && j) dp[i][j] = min(dp[i][j],dp[i-1][j-1] + dist(i,j)); } } return dp[n-1][m-1]; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...