# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
156067 | EntityIT | 도장 모으기 (JOI14_stamps) | C++14 | 460 ms | 141876 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const LL infLL = (LL)1e18 + 123;
const int N = (int)3e3 + 5;
void assignMin(LL &a, LL b) {
a = min(a, b);
}
int n, t, u[N], v[N], d[N], e[N];
LL dp[2][N][N];
int main() {
scanf(" %d %d", &n, &t);
for (int i = 1; i <= n; ++i) scanf(" %d %d %d %d", u + i, v + i, d + i, e + i);
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) dp[0][i][j] = dp[1][i][j] = infLL;
}
dp[0][1][0] = t;
for (int i = 1; i <= n; ++i) {
for (int j = n; j > 0; --j) assignMin(dp[1][i][j - 1], dp[0][i][j] + u[i] + e[i]);
for (int j = n; j > 0; --j) assignMin(dp[1][i][j - 1], dp[1][i][j] + u[i] + e[i]);
for (int j = 0; j < n; ++j) assignMin(dp[1][i][j + 1], dp[0][i][j] + d[i] + v[i]);
for (int j = 0; j < n; ++j) assignMin(dp[1][i][j + 1], dp[1][i][j] + d[i] + v[i]);
for (int j = 0; j <= n; ++j) {
assignMin(dp[1][i][j], dp[0][i][j] + u[i] + v[i]);
if (j) assignMin(dp[1][i][j], dp[0][i][j] + d[i] + e[i]);
}
for (int j = 0; j <= n; ++j) assignMin(dp[0][i + 1][j], dp[1][i][j] + t + 2 * j * t);
}
printf("%lld", dp[1][n][0] + t);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |