結果

問題 No.916 Encounter On A Tree
ユーザー bin101bin101
提出日時 2019-10-25 23:01:25
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,588 bytes
コンパイル時間 902 ms
コンパイル使用メモリ 69,868 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-13 06:54:50
合計ジャッジ時間 4,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,944 KB
testcase_01 AC 27 ms
18,944 KB
testcase_02 AC 27 ms
18,944 KB
testcase_03 AC 26 ms
18,944 KB
testcase_04 AC 27 ms
18,944 KB
testcase_05 RE -
testcase_06 AC 27 ms
18,944 KB
testcase_07 AC 27 ms
19,072 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 27 ms
18,944 KB
testcase_11 RE -
testcase_12 AC 27 ms
18,944 KB
testcase_13 RE -
testcase_14 AC 27 ms
18,944 KB
testcase_15 RE -
testcase_16 AC 27 ms
18,944 KB
testcase_17 RE -
testcase_18 AC 27 ms
18,816 KB
testcase_19 AC 27 ms
18,944 KB
testcase_20 AC 27 ms
18,944 KB
testcase_21 RE -
testcase_22 AC 27 ms
18,944 KB
testcase_23 RE -
testcase_24 AC 27 ms
18,944 KB
testcase_25 AC 27 ms
19,072 KB
testcase_26 AC 26 ms
19,072 KB
testcase_27 AC 27 ms
19,072 KB
testcase_28 AC 27 ms
19,072 KB
testcase_29 RE -
testcase_30 AC 27 ms
18,944 KB
testcase_31 AC 27 ms
18,944 KB
testcase_32 AC 26 ms
19,072 KB
testcase_33 AC 27 ms
18,944 KB
testcase_34 AC 26 ms
18,944 KB
testcase_35 AC 26 ms
18,944 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 27 ms
18,944 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 26 ms
18,944 KB
testcase_43 AC 27 ms
18,944 KB
testcase_44 AC 27 ms
18,944 KB
testcase_45 AC 27 ms
19,072 KB
testcase_46 AC 27 ms
18,944 KB
testcase_47 RE -
testcase_48 AC 27 ms
18,944 KB
testcase_49 RE -
testcase_50 AC 27 ms
18,944 KB
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 AC 28 ms
19,072 KB
testcase_55 AC 27 ms
18,944 KB
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:53:33: 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{
                return 1;
                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