結果

問題 No.2711 Connecting Lights
ユーザー graythunder1graythunder1
提出日時 2024-08-25 04:12:45
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,359 bytes
コンパイル時間 1,753 ms
コンパイル使用メモリ 160,368 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 04:12:49
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 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,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long int ll;
typedef pair<ll,ll> pll;
typedef vector<ll> vll;

#define repi(i,a,b) for(ll i=a;i<b;i++)
#define rep(i,a) repi(i,0,a)
#define rrep(i,a) for(ll i=a-1;i>=0;i--)
#define MOD 998244353

//debug
#define debug(arr) cerr<<#arr<<"(l"<<__LINE__<<") : ";for(auto x:arr)cerr<<x<<" ";cerr<<endl;

int main(){
  ll N, M, K;
  cin >> N >> M >> K;

  ll cnt_mat[N+1][N+1];
  rep(i, N+1) rep(j, N+1) cnt_mat[i][j] = 0;
  ll b_tmp;

  rep(b, 1 << N) {
    ll cnt_all = 0, cnt_tmp = 0;
    b_tmp = b;
    rep(i, N) {
      if(b_tmp % 2 == 1) cnt_all++;
      b_tmp /= 2;
    }
    b_tmp = b;
    rep(i, N) {
      if(b_tmp % 2 == 1) cnt_tmp++;
      if(cnt_tmp >= K) cnt_mat[i+1][cnt_all]++;
      b_tmp /= 2;
    }
  }

  ll result[N+1];
  rep(i, N+1) result[i] = 0;
  rep(b, 1 << N) {
    ll cnt = 0;
    ll b_tmp = b;
    rep(i, N) {
      if(b_tmp % 2 == 1) cnt++;
      b_tmp /= 2;
    }
    if(cnt >= K) result[cnt]++;
  }

  repi(i, 1, M) {
    ll result_tmp[N+1];
    rep(j, N+1) result_tmp[j] = 0;
    rep(j, N+1) {
      rep(k, N+1) {
        result_tmp[k] += result[j] * cnt_mat[j][k];
        result_tmp[k] %= MOD;
      }
    }
    copy(result_tmp, result_tmp+N+1, result);
  }

  ll ans = 0;
  rep(i, N+1) {
    ans += result[i];
    ans %= MOD;
  }
  cout << ans << endl;

  return 0;
}

0