# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
519136 | cadmiumsky | 이상한 기계 (APIO19_strange_device) | C++14 | 1751 ms | 100200 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define int long long
using namespace std;
signed main() {
int a,b,q;
bool ok = 0;
cin >> q >> a >> b;
map<int,int> smen;
int per = a * b / __gcd(b + 1, a); // formula magica care e motivata din.. niste calcule de clasa a 7a de algebra modulara O_o
if(log2((double)a / (double)__gcd(b + 1, a)) + log2(b) > 60)
per = 1e18 + 1;
for(int i = 0, cl, cr, l, r; i < q; i ++) {
cin >> l >> r;
cl = per * ceil((double)l / (double)per);
cr = per * floor((double)r / (double)per);
if(cl < cr) {
ok = 1;
}
if(cl == cr && l < cl && cr <= r) {
l %= per;
r %= per;
smen[l]++;
smen[0]++;
smen[r + 1]--;
//cout << l << ' '<< -per - 1 << '\n' << 0 << ' ' << r << '\n';
}
else {
l %= per;
r %= per;
# | 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... |
# | 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... |