Submission #406870

#TimeUsernameProblemLanguageResultExecution timeMemory
4068708e7전선 연결 (IOI17_wiring)C++14
13 / 100
38 ms2496 KiB
#include "wiring.h" //Challenge: Accepted #include <iostream> #include <algorithm> #include <vector> #include <utility> #define ll long long #define maxn 2005 #define pii pair<int, int> #define ff first #define ss second #define io ios_base::sync_with_stdio(0);cin.tie(0); using namespace std; ll dp[maxn][maxn]; ll ab(ll x) { return x > 0 ? x : -x; } const ll inf = 1LL<<60; long long min_total_length(std::vector<int> r, std::vector<int> b) { int n = r.size(), m = b.size(); /* for (int i = 0;i < n;i++) { for (int j = 0;j < m;j++) { dp[i][j] = inf; ll cost = ab(r[i] - b[j]); if (i == 0 && j == 0) dp[i][j] = cost; else if (!j) dp[i][j] = dp[i - 1][j] + cost; else if (!i) dp[i][j] = dp[i][j - 1] + cost; else { dp[i][j] = min(dp[i - 1][j], min(dp[i][j - 1], dp[i - 1][j - 1])) + cost; } } } return dp[n - 1][m - 1]; */ ll ans = 0; for (int i = 1;i < n;i++) ans += (ll)(r[i] - r[i - 1]) * i; for (int i = m - 2;i >= 0;i--) ans += (ll)(b[i + 1] - b[i]) * (m - 1 - i); ans += (ll)(max(n, m)) * (b[0] - r[n - 1]); return ans; }
#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...