# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
305121 | phathnv | Preokret (COCI18_preokret) | C++11 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 = 3000;
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 << endl << turnarounds << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |