이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <bitset>
#include <cstdint>
#include <cstring>
#include <iostream>
#include <limits.h>
#include <math.h>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
#define int long long
#define loop(X, N) for(int X = 0; X < (N); X++)
#define all(V) V.begin(), V.end()
#define rall(V) V.rbegin(), V.rend()
using namespace std;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef vector<vector<ii>> vvii;
typedef vector<bool> vb;
typedef vector<vector<bool>> vvb;
typedef uint64_t u64;
typedef int64_t i64;
int h, w;
vi a, b;
int minIdx(const vi& arr, int l, int r) {
    int best = l;
    for (int i = l; i <= r; i++) {
        if (arr[i] < arr[best])
            best = i;
    }
    return best;
}
int solve(int i1, int j1, int i2, int j2) {
    if (i1 == i2) {
        return (j2 - j1) * a[i1];
    }
    if (j1 == j2) {
        return (i2 - i1) * b[j1];
    }
    int bestI = minIdx(a, i1, i2);
    int bestJ = minIdx(b, j1, j2);
    if (bestI == i1 && bestJ == j1) {
        int bestI2 = minIdx(a, i1 + 1, i2);
        int bestJ2 = minIdx(b, j1 + 1, j2);
        if (bestI2 == i2 && bestJ2 == j2) {
            return min((i2 - i1) * b[bestJ] + (j2 - j1) * a[bestI2], (i2 - i1) * b[bestJ2] + (j2 - j1) * a[bestI]);
        }
        else if (bestI2 == i2) {
            return solve(i1, j1, i2, bestJ2) + solve(i2, bestJ2, i2, j2);
        }
    }
    else if (bestI == i2 && bestJ == j2) {
        return min(
            solve(i1, j1, i2 - 1, j2) + solve(i2 - 1, j2, i2, j2),
            solve(i1, j1, i2, j2 - 1) + solve(i2, j2 - 1, i2, j2)
        );
    }
    else {
        return solve(i1, j1, bestI, bestJ) + solve(bestI, bestJ, i2, j2);
    }
}
signed main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
    cin >> h >> w;
    a = vi(h);
    b = vi(w);
    loop(i, h) cin >> a[i];
    loop(i, w) cin >> b[i];
    vvi scores(h, vi(w));
    loop(i, h) {
        scores[i][0] = i * b[0];
    }
    loop(i, w) {
        scores[0][i] = i * a[0];
    }
    for (int i = 1; i < h; i++) {
        for (int j = 1; j < w; j++) {
            scores[i][j] = min(scores[i - 1][j] + b[j], scores[i][j - 1] + a[i]);
        }
    }
    cout << scores[h - 1][w - 1] << endl;
	return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
kyoto.cpp: In function 'long long int solve(long long int, long long int, long long int, long long int)':
kyoto.cpp:78:1: warning: control reaches end of non-void function [-Wreturn-type]
   78 | }
      | ^| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |