답안 #1041772

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1041772 2024-08-02T08:02:19 Z stdfloat 자매 도시 (APIO20_swap) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#include "swap.h"
#include "grader.cpp"
using namespace std;

using ll = long long;

#define ff  first
#define ss  second
#define pii pair<int, int>

int n;

vector<vector<pii>> E;

void init(int N, int M, vector<int> U, vector<int> V, vector<int> W) {
    n = N;
    E.assign(n, {});
    for (int i = 0; i < M; i++) {
        E[U[i]].push_back({V[i], W[i]});
        E[V[i]].push_back({U[i], W[i]});
    }
}

int getMinimumFuelCapacity(int X, int Y) {
    // cout << endl << "X " << X << ' ' << Y << endl;

    int l = 0, r = (int)1e9;
    while (l <= r) {
        int md = (l + r) >> 1;

        // cout << endl << "md " << md << endl;

        // cout << "bfsx" << endl;

        queue<int> q;
        vector<bool> visX(n);
        vector<int> p(n, -1);
        q.push(X); visX[X] = true;
        while (!q.empty()) {
            int x = q.front(); q.pop();

            // cout << "x " << x << ' ' << p[x] << endl;

            for (auto [i, w] : E[x]) {
                if (w <= md && !visX[i]) {
                    p[i] = x;
                    q.push(i);
                    visX[i] = true;
                }
            }
        }

        if (!visX[Y]) {
            l = md + 1;
            continue;
        }

        // cout << endl << "bfsY" << endl;
        bool tr = false;
        vector<bool> visY(n);
        queue<pii> q1;
        q1.push({Y, -1}); visY[Y] = true;
        while (!q1.empty() && !tr) {
            auto [x, p] = q1.front(); q1.pop();
        
            // cout << "x " << x << ' ' << p << endl;

            for (auto [i, w] : E[x]) {
                if (i == p || w > md) continue;

                if (visY[i]) {
                    if (visX[i]) {
                        tr = true;
                        break;
                    }
                }
                else {
                    visY[i] = true;
                    q1.push({i, x});
                }
            }
        }

        // cout << "tr " << tr << endl;

        int x = Y;
        // cout << "gayt" << endl;
        while (x != X && !tr) {
            x = p[x];
            if (x == -1) break;

            int cnt = 0;
            for (auto [i, w] : E[x]) {
                if ((cnt += (w <= md)) > 2) break;
            }

            // cout << endl << "x " << x << ' ' << cnt << endl;

            tr = (cnt > 2);
        }

        // cout << "tr " << tr << endl;

        if (!tr) l = md + 1;
        else r = md - 1;
    }

    // cout << endl << "l " << l << endl;
    return (l == (int)1e9 + 1 ? -1 : l);
}

Compilation message

/usr/bin/ld: /tmp/cc6obMh7.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccG6YuY6.o:swap.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status