結果

問題 No.2900 Star Divine
ユーザー karinohitokarinohito
提出日時 2024-09-20 22:40:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 1,880 bytes
コンパイル時間 4,636 ms
コンパイル使用メモリ 271,352 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 22:40:53
合計ジャッジ時間 6,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 35 ms
6,944 KB
testcase_02 AC 35 ms
6,944 KB
testcase_03 AC 38 ms
6,940 KB
testcase_04 AC 52 ms
6,940 KB
testcase_05 AC 42 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 52 ms
6,940 KB
testcase_08 AC 25 ms
6,940 KB
testcase_09 AC 25 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/all>
using namespace atcoder;
using mint = modint998244353;
vector<mint> fact, factinv, inv;
const ll mod = 998244353;
void prenCkModp(ll n) {
    fact.resize(n + 5);
    factinv.resize(n + 5);
    inv.resize(n + 5);
    fact[0] = fact[1] = 1;
    factinv[0] = factinv[1] = 1;
    inv[1] = 1;
    for (ll i = 2; i < n + 5; i++) {
        fact[i] = (fact[i - 1] * i);
        inv[i] = mod - (inv[mod % i] * (mod / i));
        factinv[i] = (factinv[i - 1] * inv[i]);
    }

}

mint nCk(ll n, ll k) {
    if (n < k||k<0) return 0;
    return fact[n] * (factinv[k] * factinv[n - k]);
}

void solve(){
    ll X,Y,M;
    cin>>X>>Y>>M;
    vector<vector<ll>> G(X);
    for(int i=0;i<M;i++){
        int u,v;cin>>u>>v;
        u--;v--;
        G[u].push_back(v);
    }
    for(int x=0;x<X;x++){
        sort(G[x].begin(),G[x].end());
        vector<ll> GG;
        for(auto y:G[x]){
            if(GG.size()==0||GG.back()!=y)GG.push_back(y);
        }
        swap(G[x],GG);
    }
    while(1){
        vector<bool> U(Y,0);
        int YN=0;
        vector<int> YY,XX;
        for(int i=0;i<Y;i++){
            U[i]=rand()%2;
            if(U[i])YY.push_back(i);
        }
        int XN=0;
        for(int x=0;x<X;x++){
            int cnt=0;
            for(int y:G[x])if(U[y])cnt++;
            if(cnt%2==1){
                XX.push_back(x);
            }
        }
        if(YY.size()+XX.size()<(X+Y+1)/2)continue;
        int xn=XX.size(),yn=YY.size();
        cout<<xn<<" "<<yn<<endl;
        for(int i=0;i<xn;i++){
            cout<<XX[i]+1<<" \n"[i==xn-1];
        }
        for(int i=0;i<yn;i++){
            cout<<YY[i]+1<<" \n"[i==yn-1];
        }
        return;
    }
}

int main(){

    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    ll T;
    cin>>T;
    while(T--)solve();
}
0