# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
147632 | xDWaffle | Ljetopica (COI19_ljetopica) | C++11 | 2 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ff(j, a, b) for(int j=a;j<b;j++)
#define pb push_back;
using namespace std;
typedef long long ll;
ll n, k;
ll a, b, path;
ll check_pathing(ll x)
{
return (x<=b && x>=a) ? x : 0;
}
void load_path()
{
path=pow(2, n-1);
ff(j, 0, n-1)
{
char tmp;
cin >> tmp;
if(tmp=='R')
{
path+=pow(2, n-2-j);
}
}
}
ll bin_string_to_ll(string s)
{
ll res=1;
ff(j, 1, s.size())
{
res=res*2;
if(s[j]=='1')
{
res++;
}
}
return res;
}
ll ena_je_budala_neopjevana(ll switches, ll pos, ll curr)
{
if(switches==0)
{
return check_pathing(curr);
}
}
int main()
{
cin >> n >> k;
load_path();
string tmpstrng;
cin >> tmpstrng;
a=bin_string_to_ll(tmpstrng);
cin >> tmpstrng;
b=bin_string_to_ll(tmpstrng);
///zavrseno ucitavanje!!
/// XOR <=> ^
ll altpath= ((1 << (n-1))-1) ^ path;
cout << check_pathing(path) + check_pathing(altpath) << 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |