結果
問題 | No.916 Encounter On A Tree |
ユーザー | auaua |
提出日時 | 2019-10-25 22:56:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,071 bytes |
コンパイル時間 | 1,313 ms |
コンパイル使用メモリ | 160,312 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 06:39:31 |
合計ジャッジ時間 | 2,957 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 7 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | AC | 7 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 7 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 7 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 1 ms
6,940 KB |
testcase_42 | AC | 2 ms
6,944 KB |
testcase_43 | AC | 1 ms
6,940 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 1 ms
6,940 KB |
testcase_48 | WA | - |
testcase_49 | AC | 2 ms
6,940 KB |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 2 ms
6,940 KB |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | AC | 1 ms
6,940 KB |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define REP(i,m,n) for(int i=(m);i<(n);i++) #define rep(i,n) REP(i,0,n) #define pb push_back #define mp make_pair #define all(c) (c).begin(),(c).end() #define rall(c) (c).rbegin(),(c).rend() typedef long long ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; const ll inf=1e9+7; const ll mod=1e9+7; ll depth(ll a){ ll cnt=0; while(a){ cnt++; a/=2; } return cnt; } ll e(ll d){ ll res=1; ll s=d; while(s>0){ s--; res*=2; res%=inf; } return res; } int main(){ ll d,l,r,k;cin>>d>>l>>r>>k; ll ans=1; ll anc=(depth(l)+depth(r)-k)/2; ans*=e(depth(l)-anc-1); ans%=inf; ans*=e(depth(r)-anc-1); ans%=inf; ans*=2; ans%=inf; ll f=0; if(depth(r)==depth(l))f=1; rep(i,d){ k=e(i); if(f&&i==depth(r)-1)k-=2; else if(i==depth(r)-1)k--; else if(i==depth(l)-1)k--; while(k>1){ ans*=k; ans%=inf; k--; } } cout<<ans<<endl; }