結果

問題 No.2733 Just K-times TSP
ユーザー tnakao0123tnakao0123
提出日時 2024-04-30 18:21:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 55,404 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-04-30 18:21:16
合計ジャッジ時間 2,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 7 ms
6,940 KB
testcase_18 AC 10 ms
6,940 KB
testcase_19 AC 13 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 5 ms
6,940 KB
testcase_22 AC 58 ms
11,648 KB
testcase_23 AC 6 ms
6,944 KB
testcase_24 AC 58 ms
9,296 KB
testcase_25 AC 53 ms
9,216 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 6 ms
6,940 KB
testcase_30 AC 14 ms
6,944 KB
testcase_31 AC 34 ms
6,944 KB
testcase_32 AC 72 ms
9,296 KB
testcase_33 AC 144 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2733.cc:  No.2733 Just K-times TSP - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 6;
const int MAX_K = 9;
const int BITS = 531441; // = 9^6
const int MOD = 998244353;

/* typedef */

typedef vector<int> vi;

/* global variables */

vi nbrs[MAX_N];
int dp[BITS][MAX_N], vs[MAX_N];

/* subroutines */

int v2b(int n, int k, int v[]) {
  int bits = 0;
  for (int i = n - 1; i >= 0; i--) bits = bits * (k + 1) + v[i];
  return bits;
}

void b2v(int bits, int n, int k, int v[]) {
  for (int i = 0; i < n; i++, bits /= (k + 1)) v[i] = bits % (k + 1);
}

inline void addmod(int &a, int b) { a = (a + b) % MOD; }

/* main */

int main() {
  int n, m, k;
  scanf("%d%d%d", &n, &m, &k);

  for (int i = 0; i < m; i++) {
    int u, v;
    scanf("%d%d", &u, &v);
    u--, v--;
    nbrs[u].push_back(v);
    nbrs[v].push_back(u);
  }

  int ebits = 1;
  for (int i = 0; i < n; i++) ebits *= (k + 1);

  for (int i = 0; i < n; i++) {
    vs[i] = 1;
    dp[v2b(n, k, vs)][i] = 1;
    vs[i] = 0;
  }

  for (int bits = 0; bits < ebits; bits++) {
    b2v(bits, n, k, vs);
    
    for (int u = 0; u < n; u++)
      if (dp[bits][u]) {
	for (auto v: nbrs[u])
	  if (vs[v] < k) {
	    vs[v]++;
	    addmod(dp[v2b(n, k, vs)][v], dp[bits][u]);
	    vs[v]--;
	  }
      }
  }

  int sum = 0;
  for (int u = 0; u < n; u++) addmod(sum, dp[ebits - 1][u]);

  printf("%d\n", sum);
  
  return 0;
}
0