結果

問題 No.1605 Matrix Shape
ユーザー aut_jul_duraut_jul_dur
提出日時 2021-07-16 22:44:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,817 bytes
コンパイル時間 3,510 ms
コンパイル使用メモリ 264,080 KB
実行使用メモリ 25,212 KB
最終ジャッジ日時 2024-07-06 10:15:32
合計ジャッジ時間 7,096 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
12,672 KB
testcase_01 AC 7 ms
12,584 KB
testcase_02 AC 6 ms
12,544 KB
testcase_03 WA -
testcase_04 AC 6 ms
12,644 KB
testcase_05 AC 5 ms
12,636 KB
testcase_06 AC 6 ms
12,560 KB
testcase_07 AC 6 ms
12,672 KB
testcase_08 AC 7 ms
12,640 KB
testcase_09 AC 6 ms
12,672 KB
testcase_10 AC 5 ms
12,628 KB
testcase_11 AC 6 ms
12,544 KB
testcase_12 AC 6 ms
12,616 KB
testcase_13 AC 5 ms
12,672 KB
testcase_14 AC 5 ms
12,544 KB
testcase_15 AC 6 ms
12,584 KB
testcase_16 AC 6 ms
12,672 KB
testcase_17 AC 6 ms
12,540 KB
testcase_18 AC 5 ms
12,672 KB
testcase_19 AC 173 ms
25,212 KB
testcase_20 AC 146 ms
21,140 KB
testcase_21 AC 146 ms
21,068 KB
testcase_22 AC 160 ms
22,192 KB
testcase_23 AC 173 ms
23,268 KB
testcase_24 AC 169 ms
24,320 KB
testcase_25 AC 79 ms
16,640 KB
testcase_26 AC 85 ms
16,736 KB
testcase_27 AC 80 ms
16,640 KB
testcase_28 AC 83 ms
16,768 KB
testcase_29 AC 81 ms
16,672 KB
testcase_30 AC 139 ms
18,048 KB
testcase_31 AC 138 ms
18,152 KB
testcase_32 AC 128 ms
18,816 KB
testcase_33 AC 125 ms
17,768 KB
testcase_34 WA -
testcase_35 AC 122 ms
20,096 KB
testcase_36 AC 77 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
const long long MOD = 1000000007;
const long long INF = 9999999999999999;
using ll = long long;
using mint = modint1000000007;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }


vector<vector<ll>> G(200200);
vector<ll> dist(200200);

void dfs(int v){
  for(auto e:G[v]){
    if(dist[e] == 0){
      dist[e] = 1;
      dfs(e);
    }
  }
}







int main(){
  ll N;
  cin>>N;
  vector<ll> aru;
  ll H[200200] = {};
  ll W[200200] = {};
  rep(i,N){
    ll a,b;
    cin>>a>>b;
    if(a == b){
      aru.push_back(a);
      continue;
    }
    G[a].push_back(b);
    G[b].push_back(a);
    H[a]++;
    W[b]++;
  }
  ll youso = 0;
  ll saisyo = 0;
  rep(i,200200){
    if(H[i]>0 || W[i]>0){
      saisyo = i;
      youso++;
    }
  }
  dist[saisyo] = 1;
  dfs(saisyo);
  ll kyori = 0;
  rep(i,200200){
    kyori += dist[i];
  }
  if(kyori != youso){
    cout << 0 << endl;
    return 0;
  }
  
  
  
  ll d = 0;
  rep(i,aru.size()){
    if(H[aru[i]] == 0 && W[aru[i]] == 0){
      d = 1;
    }
  }
  ll Hh = 0;
  ll Wh = 0;
  rep(i,200200){
    if(abs(H[i]-W[i]) > 1){
      d = 1;
    }
    else if(H[i]-W[i] == 1){
      Hh++;
    }
    else if(W[i]-H[i] == 1){
      Wh++;
    }
    else{
      continue;
    }
  }
  if(d){
    cout << 0 << endl;
    return 0;
  }
  if(Hh == 0 && Wh == 0){
    ll ans = 0;
    rep(i,200200){
      if(H[i]>0){
        ans++;
      }
    }
    cout << ans << endl;
  }
  else if(Hh == 1 && Wh == 1){
    cout << 1 << endl;
  }
  else{
    cout << 0 << endl;
  }
  return 0;
}
0