結果

問題 No.916 Encounter On A Tree
ユーザー IKyoproIKyopro
提出日時 2019-10-25 22:52:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,779 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 76,092 KB
実行使用メモリ 11,592 KB
最終ジャッジ日時 2024-09-13 06:32:40
合計ジャッジ時間 2,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 11 ms
11,360 KB
testcase_03 AC 11 ms
11,472 KB
testcase_04 AC 11 ms
11,436 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 11 ms
11,284 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 11 ms
11,528 KB
testcase_13 AC 11 ms
11,396 KB
testcase_14 AC 11 ms
11,508 KB
testcase_15 AC 11 ms
11,388 KB
testcase_16 AC 5 ms
6,944 KB
testcase_17 WA -
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 11 ms
11,344 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 12 ms
11,356 KB
testcase_23 WA -
testcase_24 AC 12 ms
11,396 KB
testcase_25 AC 11 ms
11,432 KB
testcase_26 AC 7 ms
7,296 KB
testcase_27 AC 7 ms
7,324 KB
testcase_28 AC 5 ms
6,944 KB
testcase_29 WA -
testcase_30 AC 11 ms
11,368 KB
testcase_31 AC 11 ms
11,380 KB
testcase_32 AC 11 ms
11,368 KB
testcase_33 AC 7 ms
7,396 KB
testcase_34 AC 5 ms
6,940 KB
testcase_35 AC 4 ms
6,940 KB
testcase_36 AC 11 ms
11,372 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 11 ms
11,360 KB
testcase_40 AC 11 ms
11,408 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,940 KB
testcase_44 AC 2 ms
6,940 KB
testcase_45 AC 3 ms
6,944 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 WA -
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 2 ms
6,940 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 2 ms
6,940 KB
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:92:8: warning: 'dr' may be used uninitialized [-Wmaybe-uninitialized]
   92 |     ll d = dl-dr;
      |        ^
main.cpp:82:19: note: 'dr' was declared here
   82 |     ll D,L,R,K,dl,dr;
      |                   ^~
main.cpp:92:8: warning: 'dl' may be used uninitialized [-Wmaybe-uninitialized]
   92 |     ll d = dl-dr;
      |        ^
main.cpp:82:16: note: 'dl' was declared here
   82 |     ll D,L,R,K,dl,dr;
      |                ^~

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;

const ll mod = 1e9+7;
struct mint {
    ll x;
    mint(ll x=0):x((x%mod+mod)%mod){}
    mint& operator+=(const mint a) {
        if ((x += a.x) >= mod) x -= mod;
        return *this;
    }
    mint& operator-=(const mint a) {
        if ((x += mod-a.x) >= mod) x -= mod;
        return *this;
    }
    mint& operator*=(const mint a) {
        (x *= a.x) %= mod;
        return *this;
    }
    mint operator+(const mint a) const {
        mint res(*this);
        return res+=a;
    }
    mint operator-(const mint a) const {
        mint res(*this);
        return res-=a;
    }
    mint operator*(const mint a) const {
        mint res(*this);
        return res*=a;
    }
    mint pow(ll t) const {
        if (!t) return 1;
        mint a = pow(t>>1);
        a *= a;
        if (t&1) a *= *this;
        return a;
    }
    // for prime mod
    mint inv() const {
        return pow(mod-2);
    }
    mint& operator/=(const mint a) {
        return (*this) *= a.inv();
    }
    mint operator/(const mint a) const {
        mint res(*this);
        return res/=a;
    }
};

class combination{
private:
    vector<mint> fact,finv;
public:
    combination(int N){
        fact = finv = vector<mint>(N+1);
        fact[0] = fact[1] = 1;
        finv[0] = finv[1] = 1;
        for(ll i=2;i<=N;i++){
            fact[i] = fact[i-1]*i;
            finv[i] = fact[i].inv();
        }
    }
    mint f(int i){
        return fact[i];
    }
    mint comb(int n,int k){
        if(n<k) return 0;
        if(n<0 || k<0) return 0;
        return fact[n]*finv[k]*finv[n-k];
    }
    mint hcomb(int n,int k){
        if(n==0 && k==0) return 1;
        return comb(n+k-1,k);
    }
};

int main(){
    ll D,L,R,K,dl,dr;
    cin >> D >> L >> R >> K;
    if(L<R) swap(L,R);
    for(int i=0;i<D;i++){
        int mi = (1<<i),ma = (1<<(i+1))-1;
        if(mi<=L && L<=ma) dl = i;
        if(mi<=R && R<=ma) dr = i;
    }
    vector<mint> fact(1<<D,1);
    for(ll i=1;i<(1<<D);i++) fact[i] = fact[i-1]*i;
    ll d = dl-dr;
    //cerr << dl << " " << dr << endl;
    if(d!=0 && d<K){
        cout << 0 << endl;
        return 0;
    }
    K -= d;
    if(K%2){
        cout << 0 << endl;
        return 0;
    }
    if(2*dr<K){
        cout << 0 << endl;
        return 0;
    }
    K /= 2;
    ll cnt;
    if(K==0) cnt = 1;
    else cnt = (1<<K)-(1<<(K-1));
    mint ans = 1;
    //cerr << dl << " " << dr << " " << cnt << endl;
    for(int i=0;i<D;i++){
        if(i==dr){
            mint p;
            if(dr==0) p = 1;
            else if(dr!=dl) p = fact[(1<<dr)-1];
            else p = fact[(1<<dr)-2]*(1<<dl);
            ans *= p*cnt;
        }else ans *= fact[1<<i];
    }
    cout << ans.x << endl;
}
0