# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1031100 | s_tree | City (JOI17_city) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Device.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 650'010;
vector<long long> nms;
void InitDevice()
{
long double d = 1.05;
long double val = d;
while(val <= N) {
if(!nms.size() or nms.back()!=(int)val)
nms.push_back(val);
val*=d;
}
}
int Answer(long long S, long long T)
{
long long fs = S/(N);
long long ss = fs-1+nms[S%(nms.size())];
long long ft = T/(N);
long long st = ft-1+nms[T%(nms.size())];
if(fs <= ft and st <= ss)return 1;
if(ft <= fs and ss <= st)return 0;
return 2;
}
#include "Device.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 700'010;
vector<long long> nms;
void InitDevice()
{
long double d = 1.05;
long double val = d;
while(val <= N) {
if(!nms.size() or nms.back()!=(int)val)
nms.push_back(val);
val*=d;
}
}
int Answer(long long S, long long T)
{
long long fs = S/(N);
long long ss = fs-1+nms[S%(N)];
long long ft = T/(N);
long long st = ft-1+nms[T%(N)];
if(fs <= ft and st <= ss)return 1;
if(ft <= fs and ss <= st)return 0;
return 2;
}