結果
| 問題 |
No.1186 長方形の敷き詰め
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-08-23 16:36:23 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,739 bytes |
| コンパイル時間 | 1,648 ms |
| コンパイル使用メモリ | 170,464 KB |
| 実行使用メモリ | 19,072 KB |
| 最終ジャッジ日時 | 2024-10-15 18:45:38 |
| 合計ジャッジ時間 | 2,481 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 WA * 7 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;
template<int mod> struct ModInt{
long long x=0;
constexpr ModInt(long long x=0):x((x%mod+mod)%mod){}
constexpr ModInt operator+(const ModInt& r)const{return ModInt(*this)+=r;}
constexpr ModInt operator-(const ModInt& r)const{return ModInt(*this)-=r;}
constexpr ModInt operator*(const ModInt& r)const{return ModInt(*this)*=r;}
constexpr ModInt operator/(const ModInt& r)const{return ModInt(*this)/=r;}
constexpr ModInt& operator+=(const ModInt& r){ if((x+=r.x)>=mod) x-=mod; return *this;}
constexpr ModInt& operator-=(const ModInt& r){ if((x-=r.x)<0) x+=mod; return *this;}
constexpr ModInt& operator*=(const ModInt& r){ if((x*=r.x)>=mod) x%=mod; return *this;}
constexpr ModInt& operator/=(const ModInt& r){ return *this*=r.inv();}
ModInt inv() const {
long long s=x,sx=1,sy=0,t=mod,tx=0,ty=1;
while(s%t!=0){
long long temp=s/t,u=s-t*temp,ux=sx-temp*tx,uy=sy-temp*ty;
s=t;sx=tx;sy=ty;
t=u;tx=ux;ty=uy;
}
return ModInt(tx);
}
ModInt pow(long long n) const {
ModInt a=1;
while(n>0){
if(n&1) a*=*this;
*this*=*this;
n>>=1;
}
return a;
}
friend constexpr ostream& operator<<(ostream& os,const ModInt<mod>& a) {return os << a.x;}
friend constexpr istream& operator>>(istream& is,ModInt<mod>& a) {return is >> a.x;}
};
using mint = ModInt<MOD>;
struct combination{
int N;
vector<mint> fac,finv,inverse;
combination(int N):N(N){
fac.resize(N+1);finv.resize(N+1);
fac[0]=1;
for(int i=1;i<=N;++i){fac[i]=fac[i-1]*i;}
finv[N]=fac[N].inv();
for(int i=N-1;i>=0;--i){finv[i]=finv[i+1]*(i+1);}
}
void inverse_build(){
inverse.resize(N+1);
inverse[1]=1;
for(int i=2;i<=N;++i){inverse[i]=finv[i]*fac[i-1];}
}
mint c(int n,int k){
if(n<k||n<0||k<0) return 0;
return fac[n]*finv[n-k]*finv[k];
}
mint p(int n,int k){
if(n<k||n<0||k<0) return 0;
return fac[n]*finv[n-k];
}
};
int main(){
ll n,m;
scanf("%lld%lld",&n,&m);
if(m<=n){
cout << 1 << endl;
return 0;
}
ll p = m/n;
ll q = m%n;
mint ans = 0;
combination comb(m+100);
for(ll i=0;i<=p;i++){
ll c = i*n+q + p-i;
ans += comb.c(c,p-i);
}
cout << ans << endl;
return 0;
}