結果

問題 No.2900 Star Divine
ユーザー vjudge1vjudge1
提出日時 2024-09-25 21:30:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,454 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 179,136 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-09-25 21:30:05
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,016 KB
testcase_01 AC 40 ms
6,144 KB
testcase_02 AC 48 ms
6,272 KB
testcase_03 AC 62 ms
8,832 KB
testcase_04 AC 38 ms
6,016 KB
testcase_05 AC 89 ms
12,672 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 38 ms
6,016 KB
testcase_08 AC 54 ms
12,160 KB
testcase_09 AC 32 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using Pii = pair<long long, long long>;

#define int long long

mt19937_64 rnd(time(0));

const int N = 1e5 + 5;

int t, x, y, m, vis[N];

set<Pii> s;

vector<int> g[N];

void Solve() {
  cin >> x >> y >> m;
  for (int i = 1; i <= x; i++) {
    g[i].clear();
  }
  for (int i = 1, u, v; i <= m; i++) {
    cin >> u >> v;
    s.insert({u, v});
  }
  while (!s.empty()) {
    auto cur = *s.begin();
    s.erase(s.begin());
    g[cur.first].push_back(cur.second);
  }
  while (true) {
    int cnt = 0;
    for (int i = 1; i <= y; i++) {
      vis[i] = rnd() % 2;
      cnt += vis[i];
    }
    for (int i = 1; i <= x; i++) {
      int tmp = 0;
      for (auto v : g[i]) {
        tmp += vis[v];
      }
      if (tmp % 2 == 1) {
        cnt++;
      }
    }
    if (cnt >= (x + y + 1) / 2) {
      break;
    }
  }
  vector<int> ans1, ans2;
  for (int i = 1; i <= y; i++) {
    if (vis[i] == true) {
      ans2.push_back(i);
    }
  }
  for (int i = 1; i <= x; i++) {
    int tmp = 0;
    for (auto v : g[i]) {
      tmp += vis[v];
    }
    if (tmp % 2 == 1) {
      ans1.push_back(i);
    }
  }
  cout << ans1.size() << " " << ans2.size() << "\n";
  for (auto cur : ans1) {
    cout << cur << " ";
  }
  cout << "\n";
  for (auto cur : ans2) {
    cout << cur << " ";
  }
  cout << "\n";
}

signed main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  cin >> t;
  while (t--) {
    Solve();
  }
  return 0;
}
0