結果
問題 | No.506 限られたジャパリまん |
ユーザー | ixmel |
提出日時 | 2017-04-18 18:15:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,967 bytes |
コンパイル時間 | 854 ms |
コンパイル使用メモリ | 94,732 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 04:08:33 |
合計ジャッジ時間 | 1,962 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
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 | - |
ソースコード
#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<ll> 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); rep(i,k)rep(j,k)if(i!=j){ assert(in[i]!=in[j]); assert(nam[i]!=nam[j]); } vi q(k); vi out; ll 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; }