結果

問題 No.2900 Star Divine
ユーザー vjudge1vjudge1
提出日時 2024-10-01 11:44:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,226 bytes
コンパイル時間 3,160 ms
コンパイル使用メモリ 254,380 KB
実行使用メモリ 13,120 KB
最終ジャッジ日時 2024-10-01 11:45:05
合計ジャッジ時間 5,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,276 KB
testcase_01 AC 33 ms
8,228 KB
testcase_02 AC 32 ms
8,448 KB
testcase_03 AC 37 ms
10,444 KB
testcase_04 AC 52 ms
8,252 KB
testcase_05 AC 43 ms
13,120 KB
testcase_06 AC 4 ms
8,332 KB
testcase_07 AC 51 ms
8,336 KB
testcase_08 AC 28 ms
12,924 KB
testcase_09 AC 24 ms
8,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int MAXN=1e5+100;
int x,y,m;
set<int> s[MAXN];
void solve(){
    mt19937 rnd(time(0));
    cin >> x >> y >> m;
    for (int i=1; i<=x; i++){
        s[i].clear();
    }
    for (int i=1,u,v; i<=m; i++) {
        cin >> u >> v;
        s[u].insert(v);
    }
    while (1) {
        vector<int>ans1,ans2,f(y+1);
        for (int i=1; i<=y; i++) {
            f[i]=rnd()%2;
            if (f[i]) {
                ans2.push_back(i);
            }
        }
        for (int i=1; i<=x; i++) {
            int cnt=0;
            for (int v : s[i]) {
                cnt^=f[v];
            }
            if (cnt) {
                ans1.push_back(i);
            }
        }
        if (ans1.size()+ans2.size()>=(x+y+1)/2) {
            cout << ans1.size() << " " << ans2.size() << "\n";
            for (int v : ans1) {
                cout << v << " ";
            }
            cout << "\n";
            for (int v : ans2) {
                cout << v << " ";
            }
            cout << "\n\n";
            return;
        }
    }
}
int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    int T;
    cin >> T;
    while (T--) {
        solve();
    }

    return 0;
}
0