제출 #1104025

#제출 시각아이디문제언어결과실행 시간메모리
1104025vjudge1Rack (eJOI19_rack)C++17
40 / 100
1 ms336 KiB
#include <algorithm>
#include <iostream>
#include <bits/stdc++.h>
#include <cmath>

using namespace std;
const long long mod = 1e9+7;

int binary_exponentiation(long long number, long long exponent)
{
    long long result = 1;
    while (exponent > 0) {

        if(exponent & 1) result = result * number;

        number = (number * number)%mod;
        exponent >>= 1;
    }

    return result % mod;
}


int make_path(long long seed, int length) 
{
    long long path = 0;
    for (int i = 0; i < min(length, 62); i++) {
        if (((seed >> i) & 1) == 1) path = (path + binary_exponentiation(2, length - i - 1))%mod;
    }
    return path;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    long long int height, node;
    cin >> height >> node;
    cout << (make_path(node - 1, height) + 1)%mod << endl;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...