結果

問題 No.2900 Star Divine
ユーザー vjudge1vjudge1
提出日時 2024-09-25 21:34:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 1,196 bytes
コンパイル時間 2,758 ms
コンパイル使用メモリ 254,512 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-25 21:34:58
合計ジャッジ時間 4,012 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,192 KB
testcase_01 AC 30 ms
8,192 KB
testcase_02 AC 31 ms
8,512 KB
testcase_03 AC 34 ms
10,364 KB
testcase_04 AC 50 ms
8,320 KB
testcase_05 AC 39 ms
13,056 KB
testcase_06 AC 4 ms
8,320 KB
testcase_07 AC 50 ms
8,192 KB
testcase_08 AC 27 ms
12,928 KB
testcase_09 AC 23 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define _1 (__int128)1

using namespace std;
using ll = long long;

void FileIO (const string s) {
  freopen(string(s + ".in").c_str(), "r", stdin);
  freopen(string(s + ".out").c_str(), "w", stdout);
}

const int N = 1e5 + 10;

int T, n, m, ed, stk[N], top, stk_[N], top_, ans;
set<int> g[N];
bool f[N];

void Solve () {
  mt19937 rnd(time(0));
  cin >> n >> m >> ed;
  for (int i = 1; i <= n; i++) g[i] = set<int> ();
  for (int i = 1, x, y; i <= ed; i++)
    cin >> x >> y, g[x].insert(y);
  while (1) {
    top = top_ = 0;
    for (int i = 1; i <= m; i++) {
      f[i] = rnd() % 2;
      if (f[i])
        stk_[++top_] = i;
    }
    for (int i = 1; i <= n; i++) {
      bool cnt = 0;
      for (int j : g[i])
        cnt ^= f[j];
      if (cnt)
        stk[++top] = i;
    }
    if (top + top_ < (n + m + 1) / 2) continue;
    cout << top << ' ' << top_ << '\n';
    for (int i = 1; i <= top; i++)
      cout << stk[i] << ' ';
    cout << '\n';
    for (int i = 1; i <= top_; i++)
      cout << stk_[i] << ' ';
    return ;
  }
}

signed main () {
  ios::sync_with_stdio(0), cin.tie(0);
  // FileIO("");
  for (cin >> T; T--; Solve(), cout << '\n') {}
  return 0;
}
0