# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1099200 | vjudge1 | Rack (eJOI19_rack) | C++17 | 1 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <iostream>
#include <bits/stdc++.h>
#include <cmath>
#include <vector>
using namespace std;
const long long mod = 1e9+7;
int binary_exponentiation(int number, int exponent)
{
int result;
while (exponent > 0) {
if(number & 1) result = result * number;
exponent = exponent * exponent;
number = number >> 1;
}
return result;
}
int make_path(long long seed, int length)
{
long long path = 0;
for (int i = 0; i < length; 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;
int rows = 1 << height;
std::vector<int> path(height);
for (int j = 0; j < height; ++j) {
path[j] = ((node - 1) >> j) & 1;
}
long long int leaf = 1;
long long int set = pow(2, height);
for (int i : path)
{
set = set/2;
if (i == 1) leaf += set;
}
cout << leaf%mod << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |