結果

問題 No.2900 Star Divine
ユーザー vjudge1vjudge1
提出日時 2024-09-26 10:39:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 210,056 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-09-26 10:39:10
合計ジャッジ時間 3,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,192 KB
testcase_01 AC 29 ms
8,192 KB
testcase_02 AC 31 ms
8,440 KB
testcase_03 AC 39 ms
10,316 KB
testcase_04 AC 29 ms
8,072 KB
testcase_05 AC 49 ms
13,440 KB
testcase_06 AC 3 ms
8,064 KB
testcase_07 AC 30 ms
8,064 KB
testcase_08 AC 46 ms
13,184 KB
testcase_09 AC 28 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 1e5 + 5;

int T, x, y, m, p[N], s[N], u, v, sum[2];
vector<int>e1, e2;
set<int>g[N];

void S(){
  cin >> x >> y >> m;
  e1.clear(), e2.clear();
  for(int i = 1; i <= y; ++i){
    g[i].clear();
  }
  for(int i = 1; i <= x; ++i){
    s[i] = 0;
    p[i] = 0;
  }
  for(int i = 1; i <= m; ++i){
    cin >> u >> v;
    if(g[v].find(u) == g[v].end()){
      s[u]++, g[v].insert(u);
    }
  }
  for(int i = 1; i <= y; ++i){
    sum[0] = sum[1] = 0;
    for(auto v : g[i]){
      s[v]--;
      if(!s[v]){
        sum[p[v]]++;
      }
    }
    if(sum[0] + 1 > sum[1]){
      for(auto v : g[i]){
        if(!s[v] && !p[v]){
          e1.push_back(v);
        }
        p[v] ^= 1;
      }
      e2.push_back(i);
    }
    else{
      for(auto v : g[i]){
        if(!s[v] && p[v]){
          e1.push_back(v);
        }
      }
    }
  }
  cout << e1.size() << ' ' << e2.size() << '\n';
  for(auto v : e1){
    cout << v << ' ';
  }
  cout << '\n';
  for(auto v : e2){
    cout << v << ' ';
  }
  cout << "\n\n";
}

int main(){
  ios::sync_with_stdio(0), cin.tie(0);
  for(cin >> T; T--; S()){
  }
  return 0;
}
/*
1
2 3 4
1 1
1 2
2 1
2 3
*/
0