# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
310388 | 2020-10-06T19:59:32 Z | pedroslrey | Building Bridges (CEOI17_building) | C++14 | 3000 ms | 3704 KB |
#include <bits/stdc++.h> using namespace std; using lli = long long int; const int MAXN = 1e5 + 10; const lli INF = 1e18 + 19; lli xs[MAXN]; lli wpref[MAXN]; lli dp[MAXN]; int main() { int n; scanf("%d", &n); for (int i = 1; i <= n; ++i) scanf("%lld", &xs[i]); for (int i = 1; i <= n; ++i) { scanf("%lld", &wpref[i]); wpref[i] += wpref[i - 1]; } for (int i = 2; i <= n; ++i) { dp[i] = INF; for (int j = 1; j < i; ++j) dp[i] = min(dp[i], dp[j] + wpref[i - 1] - wpref[j] + (xs[j] - xs[i])*(xs[j] - xs[i])); } printf("%lld\n", dp[n]); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 384 KB | Output is correct |
3 | Correct | 0 ms | 384 KB | Output is correct |
4 | Correct | 2 ms | 384 KB | Output is correct |
5 | Correct | 2 ms | 384 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3044 ms | 3704 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 384 KB | Output is correct |
2 | Correct | 0 ms | 384 KB | Output is correct |
3 | Correct | 0 ms | 384 KB | Output is correct |
4 | Correct | 2 ms | 384 KB | Output is correct |
5 | Correct | 2 ms | 384 KB | Output is correct |
6 | Execution timed out | 3044 ms | 3704 KB | Time limit exceeded |
7 | Halted | 0 ms | 0 KB | - |