結果

問題 No.2900 Star Divine
ユーザー vjudge1vjudge1
提出日時 2024-09-28 18:36:51
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,234 bytes
コンパイル時間 3,291 ms
コンパイル使用メモリ 281,644 KB
実行使用メモリ 13,820 KB
最終ジャッジ日時 2024-09-28 18:36:56
合計ジャッジ時間 4,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

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, lst[N];
set<int> g[N];
bool f[N];

void Solve () {
  mt19937 rnd(time(0));
  cin >> n >> m >> ed, top = top_ = 0;
  for (int i = 1; i <= n; i++) g[i] = set<int> ();
  for (int i = 1; i <= m; i++) f[i] = 0, lst[i] = 0;
  for (int i = 1, x, y; i <= ed; i++)
    cin >> x >> y, g[y].insert(x), lst[x] = max(lst[x], y);
  for (int i = 1; i <= n; i++) {
    int cnt = 1, cnt_ = 0;
    for (int j : g[i])
      if (i == lst[j])
        cnt += !f[j], cnt_ += f[j];
    if (cnt > cnt_) {
      stk[++top] = i;
      for (int j : g[i]) f[j] ^= 1;
    }
  }
  for (int i = 1; i <= m; i++)
    if (f[i])
      stk_[++top_] = i;
  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] << ' ';
}

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