# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
361917 | parsabahrami | 이상한 기계 (APIO19_strange_device) | C++17 | 780 ms | 81388 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Call my Name and Save me from The Dark
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> pii;
#define SZ(x) (int) x.size()
#define F first
#define S second
const int N = 1e6 + 10;
ll A, B; int n; set<pii> st;
int main() {
scanf("%d%lld%lld", &n, &A, &B);
ll blk = A / __gcd(A, B + 1) * B;
for (int i = 1; i <= n; i++) {
ll l, r; scanf("%lld%lld", &l, &r);
if (r - l + 1 >= blk) return !printf("%lld\n", blk);
if (l % blk <= r % blk) st.insert({l % blk, -(r % blk)});
else st.insert({0, -(r % blk)}), st.insert({l % blk, -(blk - 1)});
}
ll mx = -1, ret = 0;
for (pii x : st) {
ret += max(0ll, -x.S - max(mx + 1, x.F) + 1);
mx = max(mx, -x.S);
}
printf("%lld\n", ret);
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... |
# | 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... |