HDU 6415 (計數dp)
題意:
一個n*m的矩陣,裡面有數字1到n*m,問只有一個納什均衡點(這個點在它所在的行和列都是最大值)的矩陣組成方式有多少種。
思路:
可以發現,納什均衡點上的數字一定是n*m,所以我們從大到小放置n*m到1,n*m任意放置,剩下的數一定是放置在已經放置過的行或者列。
然後就變成了一個多階段的動態規劃,dp[i][j][k]表示最後放置數字為i,有j行k列已經放置過數字的組成數,dp[n*m][n][m]即是答案。
程式碼:
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <cstring>
#include <cstdlib>
#include <cctype>
#include <cstdio>
#include <string>
#include <bitset>
#include <cmath>
#include <ctime>
#include <queue>
#include <stack>
#include <list>
#include <map>
#include <set>
#define X first
#define Y second
#define lch (o<<1)
#define rch (o<<1|1)
#define pb push_back
#define lowbit(x) (x&-x)
#define pii pair<int,int>
#define sd(n) scanf("%d",&n)
#define sf(n) scanf("%lf",&n)
#define cout1(x) cout<<x<<endl
#define pdd pair<double,double>
#define ALL(x) x.begin(),x.end()
#define sdd(n,m) scanf("%d%d",&n,&m)
#define INS(x) inserter(x,x.begin())
#define mst(a,b) memset(a,b,sizeof(a))
#define sff(n,m) scanf("%lf%lf",&n,&m)
#define cout2(x,y) cout<<x<<" "<<y<<endl
#define qclear(a) while(!a.empty())a.pop()
#define sddd(n,m,k) scanf("%d%d%d",&n,&m,&k)
#define IOS std::ios::sync_with_stdio(false)
#define SRAND srand((unsigned int)(time(0)))
#define sfff(n,m,k) scanf("%lf%lf%lf",&n,&m,&k)
#define cout3(x,y,z) cout<<x<<" "<<y<<" "<<z<<endl
typedef long long ll;
typedef unsigned long long ull;
typedef unsigned int uint;
using namespace std;
const double PI=acos(-1.0);
const int INF=0x3f3f3f3f;
const double eps=1e-3;
const ll mod=1e9;
const int maxn=85;
const int maxm=50005;
int n,m,md;
int dp[maxn*maxn][maxn][maxn];
void solve() {
int t;
sd(t);
while(t--){
sddd(n,m,md);
dp[1][1][1]=n*m%md;
for(int i=2;i<=n*m;i++){
for(int j=1;j<=n;j++){
for(int k=1;k<=m;k++){
if(j*k>=i){
dp[i][j][k]=(ll)dp[i-1][j][k]*(j*k-i+1)%md;
dp[i][j][k]=(dp[i][j][k]+(ll)dp[i-1][j-1][k]*k*(n-j+1))%md;
dp[i][j][k]=(dp[i][j][k]+(ll)dp[i-1][j][k-1]*j*(m-k+1))%md;
}
}
}
}
printf("%d\n",dp[n*m][n][m]);
}
return ;
}
int main() {
#ifdef LOCAL
freopen("in.txt","r",stdin);
// freopen("out.txt","w",stdout);
#else
// freopen("","r",stdin);
// freopen("","w",stdout);
#endif
solve();
return 0;
}
相關文章
- hdu 6415 - DP
- HDU6415(DP)
- HDU 6415 Rikka with Nash Equilibrium (DP)UI
- HDU6415:Rikka with Nash Equilibrium(dp)UI
- HDU 6415(dp/記憶化搜尋)
- HDU多校第九次 6415 (dp
- HDU-6415 Rikka with Nash Equilibrium (DP/找規律)UI
- 【dp+組合數學】hdu 2018 多校第九場 1001 Rikka with Nash Equilibrium hdu 6415UI
- HDU 6415(dp/找規律-2018多校第九場1001)
- hdu 6415 Rikka with Nash EquilibriumUI
- hdu 2111 Saving HDU (DP)
- 【記憶優化搜尋/dp】HDU - 6415 - 杭電多校第九場 - Rikka with Nash Equilibrium優化UI
- [DP]HDU6415(2018多校訓練賽第九場 Problem A) Rikka with Nash Equilibrium 題解UI
- HDU1024(dp)
- 計數類 DP
- HDU 6035 Colorful Tree(樹形DP)
- HDU 1074 Doing Homework(狀壓DP)
- 2018 Multi-University Training Contest 9----hdu 6415 Rikka with Nash EquilibriumAIUI
- HDU4652 Dice(期望dp推式子)
- #數位DP 計數問題
- [DP] 數位DP
- HDU 5816 Hearthstone(狀態壓縮DP+概率)
- hdu--5418Victor and World+狀態壓縮DP
- 「暑期訓練」「基礎DP」 Monkey and Banana (HDU-1069)NaN
- AtCoder Beginner Contest 370 E(計數 + DP)
- HDU7458-啟發式合併最佳化DP
- 計數 dp 做題記錄(日更)
- BZOJ 2425 [HAOI2010]計數:數位dp + 組合數
- 數位 dp
- hdu--4455+ Substrings+2012杭州區域賽C題+DP
- 「暑期訓練」「基礎DP」免費餡餅(HDU-1176)
- hdu2084數塔
- 火題大戰Vol.0 B 計數DP
- 數位DP小記
- 合法方案數(dp)
- 數位dp - 板子題
- [dp 小計] SOSdp
- 洛谷P2606 [ZJOI2010]排列計數(組合數 dp)