QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#377351#7990. 广播plutosWA 11ms33988kbC++171.2kb2024-04-05 12:45:072024-04-05 12:45:08

Judging History

你现在查看的是最新测评结果

  • [2024-04-05 12:45:08]
  • 评测
  • 测评结果:WA
  • 用时:11ms
  • 内存:33988kb
  • [2024-04-05 12:45:07]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;
const int N = 2e5 + 10;
using ll = long long;
ll p[N], q[N];

int main() {
    ll n, m;
    cin >> m >> n;
    if (m >= n) {
        for (int i = 1; i <= m; i++) cin >> p[i];
        for (int i = 1; i <= n; i++) cin >> q[i];
    } else {
        for (int i = 1; i <= m; i++) cin >> q[i];
        for (int i = 1; i <= n; i++) cin >> p[i];
        swap(n, m);
    }

    for (int i = 1; i <= m / 2; i++) swap(p[i], p[m - i + 1]);
    for (int i = 1; i <= n / 2; i++) swap(q[i], q[n - i + 1]);

    vector<vector<ll>> dp(m + 2, vector<ll>(n + 2, 1e18));
    dp[0][0] = 0;
//    dp[0][1] = dp[0][1] = 0;
    ll ans = 1e18;

//    for (int j = 0; j <= n; j++) {
//        dp[0][j] = 0;
//    }
    for (int i = 1; i <= m; i++) {
        for (int j = 1; j <= n; j++) {
            dp[i][j] = j;
            if (p[i] == q[j] || p[i] == 1 || q[j] == 1)
                dp[i][j] = min(dp[i][j], dp[i - 1][j - 1]);
            dp[i][j] = min(dp[i][j], dp[i - 1][j] + 1);
            dp[i][j] = min(dp[i][j], dp[i][j - 1] + 1);
        }
        ans = min(ans, dp[i][n]);
    }
    cout << ans << "\n";
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 5524kb

input:

4 2
2 1 3 2
4 2

output:

1

result:

ok single line: '1'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3808kb

input:

1 1
2
3

output:

1

result:

ok single line: '1'

Test #3:

score: -100
Wrong Answer
time: 11ms
memory: 33988kb

input:

1997 1970
1235 1225 1169 368 1 1 1444 1 1189 775 788 114 1609 1169 821 1708 821 1370 1444 1356 775 1747 1661 775 1692 1960 788 1866 382 1444 1356 1868 309 788 1609 211 1160 1225 1370 1609 1692 1064 1356 788 1707 775 1707 1064 1356 1160 1692 368 129 1235 1868 1370 1160 775 368 129 1747 334 1503 1444 ...

output:

1812

result:

wrong answer 1st lines differ - expected: '1813', found: '1812'