답안 #781737

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
781737 2023-07-13T10:29:50 Z kebine 이상한 기계 (APIO19_strange_device) C++17
5 / 100
2372 ms 524288 KB
#include <bits/stdc++.h>
using namespace std;

# define int long long
# define fir first
# define sec second
# define pb push_back

const int cnst = 2e5+5;
bool mutipletestcase = 0;
//bool debug = false;

int gcd(int a, int b) {return b ? gcd(b, a%b): a;}
int lcm(int a, int b) {return a/gcd(a, b)*b;}

void solve() {
    int n, a, b; cin >> n >> a >> b;

    if(a*b <= 1e6) {
        int val = a*b;
        int ans = 0;
        int get[val*2+5];
        memset(get, 0, sizeof(get));

        while(n--) {
            int x, y; cin >> x >> y;
            int len = y-x+1;
            if(len >= a*b) ans = val;
            x %= val;
            y %= val;
            if(!y) y += val;
            if(!x) x += val;
            if(y < x) y += val;
            // cerr << x << " " << y << endl;
            get[x]+=1, get[y+1] -= 1;
        }

        if(ans == val) cout << ans << endl;
        else {
            bool yes[val+5];
            memset(yes, 0, sizeof(yes));

            for(int i = 1; i<=2*val; i++) {
                get[i] += get[i-1];
                // cerr << i << " " << get[i] << " " << endl;
                // if(get[i]) cerr << i << " ";
                if(get[i]) yes[i%val] = 1;
            }
            for(int i = 0; i<=val; i++) {
                if(yes[i]) ans++;
            }

            cout << ans << endl;
        }
        return;
    }
    // if(b == 1) {

    // }

    set<pair<int, int>> st;
    while(n--) {
        int x, y; cin >> x >> y;
        for(int i = x; i<=y; i++) {
            st.insert({(i+i/b)%a, i%b});
        }
    }

    cout << st.size() << endl;
}

signed main() {
    ios_base::sync_with_stdio(false);
    int t = 1;
    if(mutipletestcase) cin >> t; 
    while(t--) solve();
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 35 ms 12260 KB Output is correct
3 Correct 52 ms 17992 KB Output is correct
4 Incorrect 6 ms 8260 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Runtime error 2372 ms 524288 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 15 ms 16332 KB Output is correct
3 Correct 14 ms 16460 KB Output is correct
4 Correct 12 ms 13784 KB Output is correct
5 Correct 200 ms 17240 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 410 ms 63092 KB Output is correct
3 Runtime error 1368 ms 524288 KB Execution killed with signal 9
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 410 ms 63092 KB Output is correct
3 Runtime error 1368 ms 524288 KB Execution killed with signal 9
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 410 ms 63092 KB Output is correct
3 Runtime error 1368 ms 524288 KB Execution killed with signal 9
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Runtime error 1174 ms 524288 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 35 ms 12260 KB Output is correct
3 Correct 52 ms 17992 KB Output is correct
4 Incorrect 6 ms 8260 KB Output isn't correct
5 Halted 0 ms 0 KB -