답안 #305115

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
305115 2020-09-22T15:35:05 Z phathnv Preokret (COCI18_preokret) C++11
0 / 50
1 ms 512 KB
#include <bits/stdc++.h>

#define mp make_pair
#define X first
#define Y second

using namespace std;

typedef long long ll;
typedef pair <int, int> ii;

const int N = 2881;

int a, b;
int dif[N];

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    int points = 0, turnarounds = 0;

    cin >> a;
    for(int i = 1; i <= a; i++){
        int x;
        cin >> x;
        dif[x]++;
        if (x <= 1440)
            points++;
    }
    cin >> b;
    for(int i = 1; i <= b; i++){
        int x;
        cin >> x;
        dif[x]--;
        if (x <= 1440)
            points++;
    }

    for(int i = 1; i <= 2880; i++)
        dif[i] += dif[i - 1];

    int pre = 0, cur = 0;
    while (cur < 2880){
        int nxt = cur;
        while (dif[nxt] == dif[cur] && nxt <= 2880)
            nxt++;
        if (nxt > 2880)
            break;

        if (dif[pre] * dif[nxt] == -1)
            turnarounds++;

        pre = cur;
        cur = nxt;
    }

    cout << points << ' ' << turnarounds << endl;

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
7 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
8 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
9 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
10 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)