結果

問題 No.1669 パズル作成
ユーザー SSRSSSRS
提出日時 2021-09-03 21:58:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,396 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 182,908 KB
実行使用メモリ 22,056 KB
最終ジャッジ日時 2024-12-15 13:07:08
合計ジャッジ時間 61,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
13,728 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 89 ms
13,728 KB
testcase_04 AC 34 ms
13,640 KB
testcase_05 AC 102 ms
13,860 KB
testcase_06 AC 41 ms
13,632 KB
testcase_07 TLE -
testcase_08 AC 131 ms
15,908 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 132 ms
15,908 KB
testcase_13 AC 131 ms
16,256 KB
testcase_14 AC 133 ms
16,036 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 101 ms
8,192 KB
testcase_31 AC 158 ms
22,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> r(M), c(M);
  for (int i = 0; i < M; i++){
    cin >> r[i] >> c[i];
    r[i]--;
    c[i]--;
  }
  vector<vector<int>> E(N * 2);
  for (int i = 0; i < M; i++){
    E[r[i]].push_back(N + c[i]);
    E[N + c[i]].push_back(r[i]);
  }
  vector<int> a, b;
  int cnt = 0;
  vector<bool> used(N * 2, false);
  for (int i = 0; i < N * 2; i++){
    if (!used[i]){
      used[i] = true;
      int cnta = 0, cntb = 0;
      queue<int> Q;
      Q.push(i);
      while (!Q.empty()){
        int v = Q.front();
        Q.pop();
        if (v < N){
          cnta++;
        }
        if (v >= N){
          cntb++;
        }
        for (int w : E[v]){
          if (!used[w]){
            used[w] = true;
            Q.push(w);
          }
        }
      }
      a.push_back(cnta);
      b.push_back(cntb);
      cnt++;
    }
  }
  vector<vector<bool>> dp(N + 1, vector<bool>(N + 1, false));
  dp[0][0] = true;
  for (int i = 0; i < cnt; i++){
    for (int j = N; j >= 0; j--){
      for (int k = N; k >= 0; k--){
        if (dp[j][k]){
          dp[j + a[i]][k + b[i]] = true;
        }
      }
    }
  }
  int ans = N * N;
  for (int i = 0; i <= N; i++){
    for (int j = 0; j <= N; j++){
      if (dp[i][j]){
        ans = min(ans, i * j + (N - i) * (N - j));
      }
    }
  }
  cout << ans - M << endl;
}
0