結果

問題 No.506 限られたジャパリまん
ユーザー どららどらら
提出日時 2017-04-21 23:00:10
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 1,743 ms
コンパイル使用メモリ 178,808 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-10 12:51:34
合計ジャッジ時間 5,408 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 411 ms
4,376 KB
testcase_05 AC 412 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 103 ms
4,376 KB
testcase_09 AC 41 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 221 ms
4,380 KB
testcase_12 AC 117 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 3 ms
4,384 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 61 ms
4,376 KB
testcase_17 AC 33 ms
4,380 KB
testcase_18 AC 133 ms
4,376 KB
testcase_19 AC 100 ms
4,376 KB
testcase_20 AC 201 ms
4,376 KB
testcase_21 AC 203 ms
4,376 KB
testcase_22 AC 391 ms
4,380 KB
testcase_23 AC 99 ms
4,504 KB
testcase_24 AC 90 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

#define MOD 1000000007

int H, W, K, P;
int x[20];
int y[20];
string name[20];


int main(){
  cin >> H >> W >> K >> P;
  rep(i,K){
    cin >> x[i] >> y[i] >> name[i];
  }

  double mx = 0;
  ll mx_mod = 0;
  ll mx_S = 0;
  for(ll S=0; S<(1<<K); S++){
    int cnt = 0;
    vector<vector<int>> f(H+1, vector<int>(W+1, 0));
    vector<vector<ll>> dp(H+1, vector<ll>(W+1, 0));
    vector<vector<double>> dp2(H+1, vector<double>(W+1, 0));
    rep(i,K){
      if((S>>i)&1){
        cnt++;
      }else{
        f[x[i]][y[i]] = -1;
      }
    }
    if(cnt>P) continue;
    dp[0][0] = 1;
    dp2[0][0] = 1;
    rep(i,H+1){
      rep(j,W+1){
        if(i==0 && j==0) continue;
        if(f[i][j] == -1) continue;
        if(i-1>=0){
          dp[i][j] += dp[i-1][j];
          dp2[i][j] += dp2[i-1][j];
        }
        dp[i][j] %= MOD;
        if(j-1>=0){
          dp[i][j] += dp[i][j-1];
          dp2[i][j] += dp2[i][j-1];
        }
        dp[i][j] %= MOD;
      }
    }
    if(mx < dp2[H][W]){
      mx = dp2[H][W];
      mx_mod = dp[H][W];
      mx_S = S;
    }
  }

  cout << mx_mod << endl;
  rep(i,K){
    if((mx_S>>i)&1){
      cout << name[i] << endl;
    }
  }
  
  return 0;
}
0