# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
669490 | GrandTiger1729 | Collecting Stamps 3 (JOI20_ho_t3) | C++17 | 162 ms | 126148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
const long long INF = 1e18;
int main(){
int n;
long long L;
cin >> n >> L;
long long a[n], b[n];
for (int i = 0; i < n; i++){
cin >> a[i];
}
for (int i = 0; i < n; i++){
cin >> b[i];
}
auto idx = [&](int i) -> int {
return (i % n + n) % n;
};
auto dis = [&](long long x, long long y) -> long long {
if (x > y) swap(x, y);
return min(y - x, x + L - y);
};
long long dp[n][n][n + 1][2]{}; // [l, r], pickcnt, cur(l, r) => min time
fill_n(&dp[0][0][0][0], sizeof(dp) / sizeof(long long), INF);
for (int i = 0; i < n; i++){
dp[i][i][min(a[i], L - a[i]) <= b[i]][0] = dp[i][i][min(a[i], L - a[i]) <= b[i]][1] = min(a[i], L - a[i]);
}
for (int t = 0; t < n - 1; t++){
for (int l = n - 1; l >= 0; l--){
int r = idx(l + t);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |