結果
| 問題 | No.506 限られたジャパリまん | 
| コンテスト | |
| ユーザー |  ixmel | 
| 提出日時 | 2017-04-18 18:13:28 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 1,889 bytes | 
| コンパイル時間 | 1,002 ms | 
| コンパイル使用メモリ | 95,548 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-28 04:08:39 | 
| 合計ジャッジ時間 | 2,235 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 5 WA * 19 RE * 1 | 
ソースコード
#include<iostream>
#include<vector>
#include<string>
#include<algorithm>	
#include<map>
#include<set>
#include<utility>
#include<cmath>
#include<cstring>
#include<queue>
#include<stack>
#include<cstdio>
#include<sstream>
#include<iomanip>
#include<assert.h>
#define loop(i,a,b) for(int i=a;i<b;i++) 
#define rep(i,a) loop(i,0,a)
#define pb push_back
#define mt make_tuple
#define all(in) in.begin(),in.end()
#define shosu(x) fixed<<setprecision(x)
using namespace std;
//kaewasuretyuui
typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<pii> vp;
typedef vector<vp> vvp;
typedef vector<string> vs;
typedef vector<double> vd;
typedef tuple<int,int,int> tp;
typedef vector<tp> vt;
typedef vector<vd> vvd;
typedef pair<int,pii> pip;
typedef vector<pip>vip;
const double PI=acos(-1);
const double EPS=1e-7;
const int inf=1e8;
const ll INF=1e16;
int dx[]={0,1,0,-1};
int dy[]={1,0,-1,0};
int main(){
	int h,w,k,p;
	cin>>h>>w>>k>>p;
	assert(1<=h&&h<=32);
	assert(1<=w&&w<=32);
	assert(1<=k&&k<=20);
	assert(0<=p&&p<=k);
	vs nam(k);
	vp in(k);
	rep(i,k)cin>>in[i].first>>in[i].second>>nam[i];
	rep(i,k)assert(1<=nam[i].size()&&nam[i].size()<=10);
	rep(i,k)assert(0<=in[i].first&&in[i].first<=h);
	rep(i,k)assert(0<=in[i].second&&in[i].second<=w);
	vi q(k);
	vi out;
	int ma=0,co=0;
	rep(i,p)q[k-1-i]=1;
	do{
		vvi dp(h+2,vi(w+2));
		dp[1][1]=1;
		rep(i,h+1)rep(j,w+1){
			if(i+j==0)continue;
			bool h=true;
			rep(r,k)if(!q[r]&&in[r].first==i&&in[r].second==j)h=false;
			if(h)dp[i+1][j+1]=dp[i+1][j]+dp[i][j+1];
		}
//		rep(i,h+2){
//			rep(j,w+2)cout<<" "<<dp[i][j];
//			cout<<endl;
//		}
//		cout<<endl;
		if(ma<dp[h+1][w+1]){
			ma=dp[h+1][w+1];
			out=q;
			co=1;
		}else if(ma==dp[h+1][w+1])co++;
	}while(next_permutation(all(q)));
	assert(co==1);
	cout<<ma%1000000007<<endl;
	rep(i,out.size())if(q[i])cout<<nam[i]<<endl;
}
            
            
            
        