結果

問題 No.506 限られたジャパリまん
ユーザー rickythetarickytheta
提出日時 2017-04-21 22:45:01
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,069 bytes
コンパイル時間 1,384 ms
コンパイル使用メモリ 165,412 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 04:09:28
合計ジャッジ時間 6,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 760 ms
6,940 KB
testcase_05 AC 749 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 127 ms
6,944 KB
testcase_09 AC 37 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 346 ms
6,940 KB
testcase_12 AC 154 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 98 ms
6,940 KB
testcase_17 AC 59 ms
6,944 KB
testcase_18 AC 186 ms
6,940 KB
testcase_19 AC 6 ms
6,944 KB
testcase_20 AC 361 ms
6,940 KB
testcase_21 AC 360 ms
6,940 KB
testcase_22 AC 703 ms
6,944 KB
testcase_23 AC 177 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:73:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   73 |   scanf("%d%d%d%d",&h,&w,&k,&p);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)
#define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i)
#define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl
#define ALL(a) (a).begin(),(a).end()

#define CHMIN(a,b) a=min((a),(b))
#define CHMAX(a,b) a=max((a),(b))

// mod
const ll MOD = 1000000007ll;
#define FIX(a) ((a)%MOD+MOD)%MOD

// floating
typedef double Real;
const Real EPS = 1e-11;
#define EQ0(x) (abs(x)<EPS)
#define EQ(a,b) (abs(a-b)<EPS)
typedef complex<Real> P;

int h,w,k,p;
pii pts[16];
string name[16];

int mp[35][35];
ll dp[35][35];

int dx[] = {1,0,-1,0};
int dy[] = {0,1,0,-1};
ll check(){
  if(mp[0][0] == -1)return 0;
  queue<pii> Q;
  Q.push(pii(0,0));
  mp[0][0] = 0;
  REP(i,h+1)REP(j,w+1)dp[i][j] = 0;
  dp[0][0] = 1;
  while(!Q.empty()){
    pii P = Q.front(); Q.pop();
    int i = P.first;
    int j = P.second;
    int d = mp[i][j];
    ll yo = dp[i][j];
    REP(a,4){
      int ni = i+dy[a];
      int nj = j+dx[a];
      if(ni<0 || nj<0 || ni>h || nj>w)continue;
      if(mp[ni][nj] == d+1){
        dp[ni][nj] += yo;
      }else if(mp[ni][nj] > d+1){
        mp[ni][nj] = d+1;
        dp[ni][nj] = yo;
        Q.push(pii(ni,nj));
      }
    }
  }
  return dp[h][w];
}

int main(){
  scanf("%d%d%d%d",&h,&w,&k,&p);
  REP(i,k){
    cin>>pts[i].first>>pts[i].second>>name[i];
  }
  ll mx = 0;
  int mxmask = 0;
  REP(mask,1<<k){
    if(__builtin_popcount(mask)>p)continue;
    REP(i,h+1)REP(j,w+1)mp[i][j] = 252521;
    REP(i,k)if(!((mask>>i)&1)){
      mp[pts[i].first][pts[i].second] = -1;
    }
    ll val = check();
    if(val>mx){
      mx = val;
      mxmask = mask;
    }
  }
  cout<<(mx%MOD)<<endl;
  REP(i,k)if((mxmask>>i)&1){
    cout<<name[i]<<endl;
  }
  return 0;
}
0