結果

問題 No.916 Encounter On A Tree
ユーザー koyoprokoyopro
提出日時 2020-03-10 00:31:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 2,726 bytes
コンパイル時間 1,209 ms
コンパイル使用メモリ 159,016 KB
実行使用メモリ 32,344 KB
最終ジャッジ日時 2024-04-27 16:25:52
合計ジャッジ時間 5,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
32,136 KB
testcase_01 AC 46 ms
32,176 KB
testcase_02 AC 47 ms
32,232 KB
testcase_03 AC 48 ms
32,252 KB
testcase_04 AC 47 ms
32,160 KB
testcase_05 AC 45 ms
32,304 KB
testcase_06 AC 45 ms
32,124 KB
testcase_07 AC 45 ms
32,244 KB
testcase_08 AC 46 ms
32,236 KB
testcase_09 AC 48 ms
32,316 KB
testcase_10 AC 48 ms
32,320 KB
testcase_11 AC 47 ms
32,204 KB
testcase_12 AC 45 ms
32,132 KB
testcase_13 AC 46 ms
32,316 KB
testcase_14 AC 45 ms
32,180 KB
testcase_15 AC 46 ms
32,208 KB
testcase_16 AC 45 ms
32,136 KB
testcase_17 AC 50 ms
32,176 KB
testcase_18 AC 45 ms
32,248 KB
testcase_19 AC 46 ms
32,296 KB
testcase_20 AC 47 ms
32,160 KB
testcase_21 AC 49 ms
32,264 KB
testcase_22 AC 45 ms
32,120 KB
testcase_23 AC 46 ms
32,272 KB
testcase_24 AC 50 ms
32,244 KB
testcase_25 AC 47 ms
32,228 KB
testcase_26 AC 48 ms
32,296 KB
testcase_27 AC 50 ms
32,244 KB
testcase_28 AC 46 ms
32,136 KB
testcase_29 AC 48 ms
32,232 KB
testcase_30 AC 44 ms
32,152 KB
testcase_31 AC 46 ms
32,284 KB
testcase_32 AC 44 ms
32,120 KB
testcase_33 AC 47 ms
32,280 KB
testcase_34 AC 47 ms
32,292 KB
testcase_35 AC 47 ms
32,104 KB
testcase_36 AC 47 ms
32,332 KB
testcase_37 AC 45 ms
32,208 KB
testcase_38 AC 45 ms
32,320 KB
testcase_39 AC 47 ms
32,252 KB
testcase_40 AC 48 ms
32,160 KB
testcase_41 AC 48 ms
32,292 KB
testcase_42 AC 46 ms
32,136 KB
testcase_43 AC 49 ms
32,280 KB
testcase_44 AC 47 ms
32,276 KB
testcase_45 AC 48 ms
32,304 KB
testcase_46 AC 45 ms
32,304 KB
testcase_47 AC 49 ms
32,216 KB
testcase_48 AC 49 ms
32,264 KB
testcase_49 AC 48 ms
32,236 KB
testcase_50 AC 47 ms
32,320 KB
testcase_51 AC 50 ms
32,272 KB
testcase_52 AC 49 ms
32,340 KB
testcase_53 AC 48 ms
32,316 KB
testcase_54 AC 47 ms
32,144 KB
testcase_55 AC 46 ms
32,252 KB
testcase_56 AC 50 ms
32,192 KB
testcase_57 AC 47 ms
32,316 KB
testcase_58 AC 46 ms
32,344 KB
testcase_59 AC 47 ms
32,112 KB
testcase_60 AC 47 ms
32,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define REP1(i, n) for(int i=1; i<=(n); i++)
#define RREP1(i, n) for(int i=(n); i>=1; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

void solve();
signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}

/*================================*/
#if DEBUG
#define SIZE 100
#else
#define SIZE 123450
#endif

const int MAX = 1234560;
const int MOD = 1e9+7;

long long fac[MAX], finv[MAX], inv[MAX];

void COMinit() {
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
        finv[i] = finv[i - 1] * inv[i] % MOD;
    }
}

long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    if (!fac[n]) COMinit();
    return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}

int P(int n, int k) {
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    if (!fac[n]) COMinit();
    return (fac[n] * finv[n-k]) % MOD;
}

int d,r,l,k;
int ld=0,rd=0;

int calc() {
    if (k>ld+rd) return 0;
    if ((ld+rd)%2 != k%2) return 0;
    int ans = 0;
    if (ld == rd) {
        /*
         k=2 → 2^ld * 2^0
         k=4 → 2^ld * 2^1
         */
        ans = (1LL<<ld) * (1LL<<(k/2-1)) % MOD;
        REP(i,d) {
            int base = fac[1LL<<i];
            if (i==ld) {
                base = fac[(1LL<<i)-2];
            }
            (ans *= base) %= MOD;
        }
        return ans;
    }
    if (ld > rd) swap(ld, rd);
    if (rd-ld>k) return 0;
    int re = k - (rd-ld);
    if (re < 0 || re%2) return 0;
    int lcad = ld - re/2;
    ans = (1LL<<ld) % MOD;
    if (re==0) {
        ans *= (1LL<<k);
    } else {
        ans *= (1LL<<(rd - lcad - 1));
    }
    ans %= MOD;
    REP(i,d) {
        int base = fac[1LL<<i];
        if (i==ld||i==rd) {
            base = fac[(1LL<<i)-1];
        }
        (ans *= base) %= MOD;
    }
    return ans;
}

void solve() {
    cin>>d>>l>>r>>k;
    
    COMinit();
    REP(i,22) {
        int mi = 1LL<<i;
        int ma = 1LL<<(i+1);
        if (mi <= l && l < ma) ld = i;
        if (mi <= r && r < ma) rd = i;
    }
    cout << calc() << endl;
}
0