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