QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#660088#2955. Stable Tableenze114514#WA 0ms3748kbC++202.3kb2024-10-20 05:24:442024-10-20 05:24:45

Judging History

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

  • [2024-10-20 05:24:45]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3748kb
  • [2024-10-20 05:24:44]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

const int N = 150 * 150, M = N * N;
vector<vector<int>> G;
map<int, int> in_s;
vector<int> s;

map<int, int> in_t;
vector<int> t;

int n, m;
int a[150][150];
int dis1[N], dis2[N];


void dij(int s, int dis[]) {
    priority_queue<pair<int, int>> q;
    fill(dis, dis + N, INT_MAX);
    dis[s] = 0;
    q.emplace(0, s);

    while (!q.empty()) {
        auto [d, u] = q.top();
        q.pop();
        d = -d;
        if (d != dis[u]) continue;
        for (int v : G[u]) {
            if (dis[v] > dis[u] + 1) {
                dis[v] = dis[u] + 1;
                q.emplace(-dis[v], v);
            }
        }
    }
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    cin >> n >> m;
    G.resize(n * m);

    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= m; ++j) {
            cin >> a[i][j];
        }
    }

    for (int i = n; i > 1; --i) {
        for (int j = 1; j <= m; ++j) {
            if (a[i][j] != a[i - 1][j]) {
                G[a[i - 1][j]].push_back(a[i][j]);
            }
        }
    }

    for (int i = 1; i <= m; ++i) {
        if (!in_s[a[1][i]]) {
            in_s[a[1][i]] = 1;
            s.push_back(a[1][i]);
        }

        if (!in_t[a[n][i]]) {
            in_t[a[n][i]] = 1;
            t.push_back(a[n][i]);
        }
    }

    if (s.size() == 1) {
        dij(s[0], dis1);

        int ans = INT_MAX;
        for (int i = 0; i < t.size(); ++i) {
            if (dis1[t[i]] != INT_MAX) {
                ans = min(ans, dis1[t[i]]);
            }
        }
        cout << ans << '\n';
    } else {
        dij(s[0], dis1);
        dij(s[1], dis2);

        int ans = INT_MAX;
        for (int i = 0; i < t.size(); ++i) {
            for (int j = 0; j < t.size(); ++j) {
//                cout << "i: " << i << " j: " << j << '\n';
//                cout << "t[i]: " << t[i] << " t[j]: " << t[j] << '\n';
//                cout << dis1[t[i]] << ' ' << dis2[t[j]] << '\n';
//                cout << "\n\n";
                if (dis1[t[i]] == INT_MAX || dis2[t[j]] == INT_MAX) continue;
                ans = min(ans, dis1[t[i]] + dis2[t[j]] + 2);
            }
        }
        cout << ans << '\n';
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3748kb

input:

7 8
3 3 3 3 10 10 10 10
2 14 3 7 7 10 4 11
2 14 3 1 1 10 4 11
2 14 8 8 8 8 4 11
9 14 5 5 5 5 4 13
9 14 12 12 12 12 4 13
9 6 6 6 6 6 6 13

output:

6

result:

wrong answer 1st lines differ - expected: '5', found: '6'