結果

問題 No.2900 Star Divine
ユーザー vjudge1vjudge1
提出日時 2024-09-25 21:42:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,370 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 211,624 KB
実行使用メモリ 16,832 KB
最終ジャッジ日時 2024-09-25 21:43:00
合計ジャッジ時間 3,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,564 KB
testcase_01 AC 31 ms
10,564 KB
testcase_02 AC 36 ms
11,076 KB
testcase_03 AC 47 ms
13,056 KB
testcase_04 AC 35 ms
10,496 KB
testcase_05 AC 58 ms
16,832 KB
testcase_06 AC 5 ms
10,496 KB
testcase_07 AC 38 ms
10,564 KB
testcase_08 AC 37 ms
16,452 KB
testcase_09 AC 25 ms
10,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int N = 1e5 + 10;

int T, x, y, m;
bool f[N], vis[N];
vector<int> g[N];
map<int, bool> mp[N];

mt19937 rnd(time(0));

void Solve() {
    cin >> x >> y >> m;
    while (m--) {
        int u, v; cin >> u >> v;
        if (!mp[u].count(v)) mp[u][v] = 1, g[u].push_back(v);
    }
    while (1) {
        int ct = 0;
        for (int i = 1; i <= y; i++) {
            f[i] = rnd() % 2, ct += f[i];
        }
        for (int i = 1; i <= x; i++) {
            int cnt = 0;
            for (int j : g[i]) cnt += f[j];
            if (cnt % 2) ct++, vis[i] = 1;
        }

        if (ct >= (x + y + 1) / 2) {
            vector<int> p, q;
            for (int i = 1; i <= x; i++) {
                if (vis[i]) p.push_back(i);
            }
            for (int i = 1; i <= y; i++) {
                if (f[i]) q.push_back(i);
            }
            cout << p.size() << ' ' << q.size() << '\n';
            for (int x : p) cout << x << ' ';
            cout << '\n';
            for (int x : q) cout << x << ' ';
            cout << '\n';
            break;
        }
        fill(vis + 1, vis + x + 1, 0);
    }
    for (int i = 1; i <= x; i++) mp[i].clear(), g[i].clear(), vis[i] = 0;
    cout << '\n';
}

int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    cin >> T;
    while (T--) Solve();
    return 0;
}
/////
0