結果
問題 | No.506 限られたジャパリまん |
ユーザー | kopricky |
提出日時 | 2017-07-18 20:08:02 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,268 bytes |
コンパイル時間 | 1,524 ms |
コンパイル使用メモリ | 169,956 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 04:19:33 |
合計ジャッジ時間 | 2,497 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 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
6,940 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 <bits/stdc++.h> #define ll long long #define INF 1000000005 #define MOD 1000000007 #define EPS 1e-10 #define rep(i,n) for(int i=0;i<(int)n;++i) #define each(a, b) for(auto (a): (b)) #define all(v) (v).begin(),(v).end() #define fi first #define se second #define pb push_back #define show(x) cout <<#x<<" = "<<(x)<<endl #define spair(p) cout <<#p<<": "<<p.fi<<" "<<p.se<<endl #define svec(v) cout<<#v<<":";rep(kbrni,v.size())cout<<" "<<v[kbrni];cout<<endl #define sset(s) cout<<#s<<":";each(kbrni,s)cout <<" "<<kbrni;cout<<endl using namespace std; typedef pair<int,int>P; const int MAX_N = 33; ll dp[MAX_N][MAX_N]; bool flag[MAX_N][MAX_N]; vector<string> vec; ll opt; int main() { int h,w,K,p; cin >> w >> h >> K >> p; vector<int> x(K),y(K); vector<string> N(K); rep(i,K){ cin >> x[i] >> y[i] >> N[i]; } opt = 0; vector<bool> v(K); fill(v.end() - p, v.end(), true); do { vector<int> res; rep(i,K) { if (v[i]) { res.pb(i); } } rep(i,w+1){ rep(j,h+1){ flag[i][j] = false; } } rep(i,K){ flag[x[i]][y[i]] = true; } rep(i,p){ flag[x[res[i]]][y[res[i]]] = false; } rep(i,w+1){ rep(j,h+1){ dp[i][j] = 0; } } dp[0][0] = 1; rep(i,h){ if(flag[0][i+1]){ dp[0][i+1] = 0; }else{ dp[0][i+1] = dp[0][i]; } } rep(i,w){ if(flag[i+1][0]){ dp[i+1][0] = 0; }else{ dp[i+1][0] = dp[i][0]; } } rep(i,w){ rep(j,h){ if(flag[i+1][j+1]){ dp[i+1][j+1] = 0; }else{ dp[i+1][j+1] = dp[i+1][j] + dp[i][j+1]; } } } if(dp[w][h] > opt){ opt = dp[w][h]; rep(i,p){ vec.pb(N[res[i]]); } } } while (next_permutation(v.begin(), v.end())); cout << opt % MOD << endl; rep(i,p){ cout << vec[i] << endl; } return 0; }