結果

問題 No.916 Encounter On A Tree
ユーザー bin101bin101
提出日時 2019-10-25 23:05:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 1,564 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 69,976 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-13 07:02:07
合計ジャッジ時間 3,687 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
18,944 KB
testcase_01 AC 27 ms
19,072 KB
testcase_02 AC 27 ms
18,944 KB
testcase_03 AC 27 ms
19,072 KB
testcase_04 AC 27 ms
18,944 KB
testcase_05 AC 27 ms
19,072 KB
testcase_06 AC 27 ms
18,944 KB
testcase_07 AC 27 ms
18,944 KB
testcase_08 AC 27 ms
18,944 KB
testcase_09 AC 27 ms
18,944 KB
testcase_10 AC 27 ms
18,944 KB
testcase_11 AC 27 ms
18,944 KB
testcase_12 AC 26 ms
18,944 KB
testcase_13 AC 27 ms
18,944 KB
testcase_14 AC 27 ms
18,944 KB
testcase_15 AC 27 ms
18,944 KB
testcase_16 AC 27 ms
18,944 KB
testcase_17 AC 27 ms
18,944 KB
testcase_18 AC 27 ms
18,944 KB
testcase_19 AC 27 ms
18,944 KB
testcase_20 AC 27 ms
18,944 KB
testcase_21 AC 27 ms
18,816 KB
testcase_22 AC 26 ms
18,944 KB
testcase_23 AC 27 ms
18,944 KB
testcase_24 AC 27 ms
18,944 KB
testcase_25 AC 27 ms
19,072 KB
testcase_26 AC 27 ms
18,944 KB
testcase_27 AC 27 ms
18,944 KB
testcase_28 AC 27 ms
18,944 KB
testcase_29 AC 27 ms
18,816 KB
testcase_30 AC 27 ms
18,944 KB
testcase_31 AC 27 ms
18,944 KB
testcase_32 AC 27 ms
18,944 KB
testcase_33 AC 27 ms
18,944 KB
testcase_34 AC 27 ms
19,072 KB
testcase_35 AC 27 ms
19,072 KB
testcase_36 AC 27 ms
18,944 KB
testcase_37 AC 27 ms
18,944 KB
testcase_38 AC 27 ms
18,816 KB
testcase_39 AC 27 ms
18,944 KB
testcase_40 AC 27 ms
18,944 KB
testcase_41 AC 28 ms
18,944 KB
testcase_42 AC 27 ms
18,944 KB
testcase_43 AC 27 ms
18,944 KB
testcase_44 AC 27 ms
18,816 KB
testcase_45 AC 27 ms
18,944 KB
testcase_46 AC 27 ms
18,944 KB
testcase_47 AC 27 ms
18,816 KB
testcase_48 AC 27 ms
19,072 KB
testcase_49 AC 27 ms
18,944 KB
testcase_50 AC 27 ms
19,072 KB
testcase_51 AC 26 ms
18,944 KB
testcase_52 AC 28 ms
18,816 KB
testcase_53 AC 28 ms
18,944 KB
testcase_54 AC 27 ms
19,072 KB
testcase_55 AC 27 ms
19,072 KB
testcase_56 AC 27 ms
18,944 KB
testcase_57 AC 26 ms
19,072 KB
testcase_58 AC 27 ms
18,944 KB
testcase_59 AC 27 ms
18,944 KB
testcase_60 AC 26 ms
18,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:53:39: warning: ‘rd’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   53 |                     ans*=2*(t[rd]-s[rd]+1)/2;
      |                                   ~~~~^
main.cpp:47:18: warning: ‘ld’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   47 |     for(int i=0;i<ld;i++){
      |                 ~^~~

ソースコード

diff #

#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<iostream>
#include<queue>
#include<vector>
#include <bitset>
#include <cmath>
#include <limits>
#include <iostream>
using namespace std;
#define INF 100000
#define MAX 100000
#define MOD 1000000007
typedef long long ll;
typedef pair<int,int> P;
typedef pair< pair<int,int>, int> p; 
#define bit(n,k) ((n>>k)&1) /*nのk bit目*/

int myplus[30];

int main(){
    ll fact[2000000];
    fact[0]=1;
    for(ll i=1;i<2000000;i++){
        fact[i]=i*fact[i-1];
        fact[i]%=MOD;
    }

    int d,ld,rd;
    ll l,r,k,s[30],t[30];
    cin>>d>>l>>r>>k;

    s[1]=1LL; t[1]=1LL;
    for(int i=2;i<=d;i++){
        s[i]=s[i-1]*2;
        t[i]=t[i-1]*2+1;
    }
    for(int i=1;i<=d;i++){
        if(s[i]<=l && l<=t[i]) ld=i;
        if(s[i]<=r && r<=t[i]) rd=i;
    }
    bool flag=false;
    int temp=rd-ld;
    ll ans=1;
    int unko=1;
    for(int i=0;i<ld;i++){
        if(i>1) unko*=2;
        if(temp+i*2==k){
            flag=true;
            if(rd==ld){ //正しく機能
                if(i==1){
                    ans*=2*(t[rd]-s[rd]+1)/2;
                }else{
                    ans*=(t[rd]-s[rd]+1)*unko;
                }
            }else{
                //unko/=2;
                if(unko<1) unko=1;
                ans*=unko*(t[rd]-s[rd]+1);
            }
        } 
    }
    if(!flag){
        cout<<0<<endl;
        return 0;
    }
    myplus[ld]--; myplus[rd]--;
    for(int i=1;i<=d;i++){
        ans*=fact[t[i]-s[i]+1+myplus[i]];
        ans%=MOD;
    }
    cout<<ans<<endl;
}

0