| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 726833 | penguin133 | 이상한 기계 (APIO19_strange_device) | C++17 | 557 ms | 53260 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pi pair<int, int>
#define pii pair<int, pi>
#define fi first
#define se second
#ifdef _WIN32
#define getchar_unlocked _getchar_nolock
#endif
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
void solve(){
int n, a, b;
cin >> n >> a >> b;
int tmp = __gcd(a, b+1);
__int128 x = a;
x *= b;
x /= tmp;
vector <pi> v;
int ans = 0;
for(int i=1;i<=n;i++){
int l, r; cin >> l >> r;
if(l == r){
v.push_back({l%x, l%x});
continue;
}
__int128 l1 = l, r1 = r;
if(r1 >= l1 + x){
cout << (long long)x << '\n';
return;
}
l %= x;
r %= x;
if(l > r)v.push_back({l, x-1}), v.push_back({0, r});
else v.push_back({l, r});
}
sort(v.begin(), v.end());
int prv = -1, st = -1;
for(auto [i, j] : v){
if(i > prv){
if(prv != -1)ans += prv-st+1;
st = i;
}
prv = max(prv, j);
}
if(prv != -1)ans += prv-st+1;
cout << ans;
}
main(){
ios::sync_with_stdio(0);cin.tie(0);
int tc = 1;
//cin >> tc;
for(int tc1=1;tc1<=tc;tc1++){
// cout << "Case #" << tc1 << ": ";
solve();
}
}
컴파일 시 표준 에러 (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... | ||||
