結果

問題 No.506 限られたジャパリまん
ユーザー ixmelixmel
提出日時 2017-04-18 18:12:46
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,887 bytes
コンパイル時間 1,788 ms
コンパイル使用メモリ 94,796 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-10 12:50:30
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}




0