답안 #35237

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
35237 2017-11-19T08:16:17 Z wan2000 마스코트 (JOI13_mascots) C++14
0 / 100
9 ms 213536 KB
#include <bits/stdc++.h>

using namespace std;

template<typename T> inline void read(T &x){
    x = 0; char ch;
    while(!isdigit(ch=getchar()));
    do{x=10*x+ch-'0';}while(isdigit(ch=getchar()));
}
template<typename T> inline void write(T x){
    if(x<=9){ putchar(x+'0'); return;}
    write(x/10); putchar(x%10+'0');
}
template<typename T> inline void writeln(T x){
    write(x); putchar('\n');
}

typedef long long ll;

const int N = 3003;
const ll MOD = 1e9+7;

int row, col, n;
ll F[N][N], Fac[N*N], BC[N][N], res;
int u = N, v = N, p = 0, q = 0;

void init(){
    Fac[0] = 1;
    for(int i = 1; i <= row*col; i++) Fac[i] = (Fac[i-1]*(ll)i)%MOD;
    for(int i = 0; i <= max(row,col); i++) BC[0][i] = 1;
    for(int i = 1; i <= max(row,col); i++){
        BC[i][i] = 1;
        for(int j = i+1; j <= max(row,col); j++){
            BC[i][j] = (BC[i-1][j-1]+BC[i][j-1])%MOD;
        }
    }
}

ll f(int x, int y, int r, int c){
    if(F[x][y]!=-1) return F[x][y];
    if(x==r&&y==c) return 1;
    ll ret = 0;
    if(x>r) ret = (ret+f(x-1,y,r,c)*Fac[y])%MOD;
    if(y>c) ret = (ret+f(x,y-1,r,c)*Fac[x])%MOD;
    return F[x][y] = ret;
}

int main()
{
    ios_base::sync_with_stdio(0); cin.tie(0);
    read(row); read(col);
    init();
    read(n);
    for(int i = 1; i <= n; i++){
        int x, y;
        read(x); read(y);
        u = min(u,x);
        v = min(v,y);
        p = max(p,x);
        q = max(q,x);
    }
    int x = p-u+1;
    int y = q-v+1;
    memset(F,255,sizeof(F));
    ll need = (Fac[x*y-n]*f(row,col,x,y))%MOD;
    res = (BC[u-1][row-x]*BC[v-1][col-y])%MOD;
    res = (res*need)%MOD;
    writeln(res);
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 213536 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 213536 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 213536 KB Output isn't correct
2 Halted 0 ms 0 KB -