# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
821160 | danikoynov | Sightseeing in Kyoto (JOI22_kyoto) | C++14 | 4 ms | 320 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
typedef long long ll;
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
const int maxn = 1e3 + 10;
const ll inf = 1e18;
int h, w;
ll a[maxn], b[maxn], dp[maxn];
void solve()
{
cin >> h >> w;
for (int i = 1; i <= h; i ++)
cin >> a[i];
for (int i = 1; i <= w; i ++)
cin >> b[i];
for (int i = 1; i <= w; i ++)
dp[i] = (ll)1 * (-a[1]);
/**cout << "---------" << endl;
for (int j = 1; j <= w; j ++)
cout << dp[j] << " ";
cout << endl;*/
for (int i = 2; i <= h; i ++)
{
for (int j = 2; j <= w; j ++)
dp[j] = min(dp[j], dp[j - 1]);
for (int j = 1; j <= w; j ++)
{
dp[j] += (ll)(j) * (a[i - 1] - a[i]) + b[j];
}
/**for (int j = 1; j <= w; j ++)
cout << dp[j] << " ";
cout << endl;*/
}
ll ans = inf;
for (int j = 1; j <= w; j ++)
ans = min(ans, w * a[h] + dp[j]);
cout << ans << endl;
}
int main()
{
solve();
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... |