結果

問題 No.2900 Star Divine
ユーザー vjudge1vjudge1
提出日時 2024-09-25 20:38:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 211,196 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-09-25 20:38:23
合計ジャッジ時間 3,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,216 KB
testcase_01 AC 34 ms
8,320 KB
testcase_02 AC 36 ms
8,448 KB
testcase_03 AC 49 ms
10,496 KB
testcase_04 AC 36 ms
8,192 KB
testcase_05 AC 54 ms
13,312 KB
testcase_06 AC 6 ms
8,192 KB
testcase_07 AC 36 ms
8,320 KB
testcase_08 AC 32 ms
13,040 KB
testcase_09 AC 27 ms
8,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 1e5 + 5;

mt19937_64 rnd(time(0));

int x, y, m, u, v, now, cnt, a[N], b[N], T;
set<int>g[N];

void S(){
  cin >> x >> y >> m;
  for(int i = 1; i <= x; ++i){
    g[i].clear();
  }
  for(int i = 1; i <= m; i++){
    cin >> u >> v;
    g[u].insert(v);
  }
  for(int i = 1; i <= 20; ++i){
    cnt = 0;
    for(int j = 1; j <= y; ++j){
      a[j] = rnd() % 2;
      cnt += a[j];
    }
    for(int j = 1; j <= x; ++j){
      now = 0;
      for(auto v : g[j]){
        if(a[v]){
          now++;
        }
      }
      b[j] = now % 2;
      cnt += b[j];
    }
    if(cnt >= (x + y + 1) / 2){
      vector<int>e1, e2;
      for(int j = 1; j <= x; ++j){
        if(b[j]){
          e1.push_back(j);
        }
      }
      for(int j = 1; j <= y; ++j){
        if(a[j]){
          e2.push_back(j);
        }
      }
      cout << e1.size() << ' ' << e2.size() << '\n';
      for(auto v : e1){
        cout << v << ' ';
      }
      cout << '\n';
      for(auto v : e2){
        cout << v << ' ';
      }
      cout << "\n\n";
      return ;
    }
  }
}

int main(){
  ios::sync_with_stdio(0), cin.tie(0);
  for(cin >> T; T--; S()){
  }
  return 0;
}
0