# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
145926 | youssan_william | Preokret (COCI18_preokret) | C++14 | 4 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{
ll a , b;
cin >> a;
ll arr[a];
ll mid=1440;
map<ll,char>mp;
vector<ll>goals;
for(int i = 0 ; i < a ;i++)
{
cin >> arr[i];
goals.push_back(arr[i]);
mp[arr[i]]='a';
}
cin >> b;
ll arr2[b];
for(int i = 0 ; i < b ;i++)
{
cin >> arr2[i];
goals.push_back(arr2[i]);
mp[arr2[i]]='b';
}
sort(goals.begin(),goals.end());
int ans=0 , teamA=0 , teamB=0 , turnarounds=0,loser=-1, newloser;
for(int i = 0 ; i < goals.size() ;i++)
{
if(mp[goals[i]]=='a')
teamA++;
else teamB++;
if(teamA!=teamB&&teamA!=0&&teamB!=0)
{
if(teamA>teamB) newloser=1;
else newloser=0;
if(newloser!=loser)
{
loser=newloser;
turnarounds++;
}
}
if(goals[i]<=mid)
ans++;
}
cout << ans << "\n" << turnarounds ;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |