結果
問題 | No.916 Encounter On A Tree |
ユーザー | tko919 |
提出日時 | 2019-10-26 17:31:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,052 bytes |
コンパイル時間 | 1,879 ms |
コンパイル使用メモリ | 171,240 KB |
実行使用メモリ | 19,924 KB |
最終ジャッジ日時 | 2024-09-14 14:09:32 |
合計ジャッジ時間 | 7,195 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
19,712 KB |
testcase_01 | AC | 54 ms
19,728 KB |
testcase_02 | AC | 53 ms
19,584 KB |
testcase_03 | AC | 54 ms
19,712 KB |
testcase_04 | AC | 53 ms
19,676 KB |
testcase_05 | AC | 53 ms
19,568 KB |
testcase_06 | AC | 53 ms
19,656 KB |
testcase_07 | AC | 53 ms
19,716 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 51 ms
19,676 KB |
testcase_11 | WA | - |
testcase_12 | AC | 54 ms
19,444 KB |
testcase_13 | WA | - |
testcase_14 | AC | 53 ms
19,772 KB |
testcase_15 | WA | - |
testcase_16 | AC | 54 ms
19,628 KB |
testcase_17 | AC | 53 ms
19,636 KB |
testcase_18 | AC | 54 ms
19,728 KB |
testcase_19 | AC | 54 ms
19,764 KB |
testcase_20 | AC | 53 ms
19,624 KB |
testcase_21 | AC | 53 ms
19,744 KB |
testcase_22 | AC | 53 ms
19,684 KB |
testcase_23 | AC | 53 ms
19,756 KB |
testcase_24 | AC | 52 ms
19,772 KB |
testcase_25 | AC | 53 ms
19,796 KB |
testcase_26 | AC | 53 ms
19,568 KB |
testcase_27 | AC | 53 ms
19,724 KB |
testcase_28 | AC | 53 ms
19,720 KB |
testcase_29 | AC | 54 ms
19,808 KB |
testcase_30 | AC | 53 ms
19,560 KB |
testcase_31 | AC | 53 ms
19,712 KB |
testcase_32 | AC | 53 ms
19,440 KB |
testcase_33 | AC | 53 ms
19,640 KB |
testcase_34 | AC | 53 ms
19,744 KB |
testcase_35 | AC | 53 ms
19,924 KB |
testcase_36 | WA | - |
testcase_37 | AC | 54 ms
19,840 KB |
testcase_38 | AC | 53 ms
19,792 KB |
testcase_39 | AC | 53 ms
19,628 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 54 ms
19,732 KB |
testcase_43 | AC | 53 ms
19,748 KB |
testcase_44 | AC | 53 ms
19,504 KB |
testcase_45 | AC | 54 ms
19,812 KB |
testcase_46 | AC | 53 ms
19,588 KB |
testcase_47 | WA | - |
testcase_48 | AC | 53 ms
19,500 KB |
testcase_49 | WA | - |
testcase_50 | AC | 53 ms
19,720 KB |
testcase_51 | WA | - |
testcase_52 | AC | 53 ms
19,568 KB |
testcase_53 | WA | - |
testcase_54 | AC | 53 ms
19,792 KB |
testcase_55 | AC | 53 ms
19,820 KB |
testcase_56 | AC | 53 ms
19,724 KB |
testcase_57 | AC | 53 ms
19,720 KB |
testcase_58 | WA | - |
testcase_59 | AC | 53 ms
19,804 KB |
testcase_60 | AC | 53 ms
19,568 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(a);i<(b);i++) #define rrep(i,a,b) for(int i=(a);i>(b);i--) #define ALL(v) (v).begin(),(v).end() typedef long long int ll; typedef pair<ll, ll> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename A,size_t N,typename T>void Fill(A(&array)[N],const T &val){fill((T*)array, (T*)(array+N), val);} const int inf = 0x3fffffff; const ll INF = 0x3fffffffffffffff; //template end ll mod=1e9+7; struct Mint { ll val; Mint inv() const{ ll tmp,a=val,b=mod,x=1,y=0; while(b)tmp=a/b,a-=tmp*b,swap(a,b),x-=tmp*y,swap(x,y); return Mint(x); } public: Mint():val(0){} Mint(ll x):val(x>=0?x%mod:x%mod+mod){} int mtoi(){return this->val; } Mint pow(ll t){Mint res=1,b=*this; while(t){if(t&1)res*=b;b*=b;t>>=1;}return res;} Mint& operator+=(const Mint& x){if((val+=x.val)>=mod)val-=mod;return *this;} Mint& operator-=(const Mint& x){if((val+=mod-x.val)>=mod)val-=mod; return *this;} Mint& operator*=(const Mint& x){val=(ll)val*x.val%mod; return *this;} Mint& operator/=(const Mint& x){return *this *= x.inv();} bool operator==(const Mint& x) const{return val == x.val;} bool operator!=(const Mint& x) const{return val != x.val;} bool operator<(const Mint& x) const{return val < x.val;} bool operator<=(const Mint& x) const{return val <= x.val;} bool operator>(const Mint& x) const{return val > x.val;} bool operator>=(const Mint& x) const{return val >= x.val;} Mint operator+(const Mint& x) const{return Mint(*this)+=x;} Mint operator-(const Mint& x) const{return Mint(*this)-=x;} Mint operator*(const Mint& x) const{return Mint(*this)*=x;} Mint operator/(const Mint& x) const{return Mint(*this)/=x;} }; struct factorial { vector<Mint> Fact, Finv; public: factorial(int maxx){ Fact.resize(maxx+1),Finv.resize(maxx+1); Fact[0]=Mint(1); rep(i,0,maxx)Fact[i+1]=Fact[i]*Mint(i+1); Finv[maxx]=Mint(1)/Fact[maxx]; rrep(i,maxx,0)Finv[i-1]=Finv[i]*Mint(i); } Mint fact(int n,bool inv=0){if(inv)return Finv[n];else return Fact[n];} Mint nPr(int n,int r){if(n<0||n<r||r<0)return Mint(0);else return Fact[n]*Finv[n-r];} Mint nCr(int n,int r){if(n<0||n<r||r<0)return Mint(0);else return Fact[n]*Finv[r]*Finv[n-r];} }; factorial fact(1050000); int calc(int x){ int res=0; while(x)x/=2,res++; return res-1; } int main(){ int d,l,r,k; scanf("%d%d%d%d",&d,&l,&r,&k); l=calc(l),r=calc(r); Mint ans=1; int lca=-1; if((l+r-k)>=0&&(l+r-k)%2==0)lca=(l+r-k)/2; if(lca==-1||lca>l||lca>r){ printf("0\n"); return 0; } rep(i,0,d){ int dep=1<<i; if(i==l)dep--; if(i==r)dep--; ans*=fact.fact(dep); } ans*=Mint(1<<lca)*Mint(1<<(l-lca))*Mint(1<<(r-lca))/2; printf("%d\n",ans.mtoi()); return 0; }