# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
87025 | rakuten | 돌 무게 재기 (IZhO11_stones) | C++14 | 1000 ms | 1316 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define pb push_back
#define mk make_pair
#define ll long long
#define OK puts("OK")
#define sz(s) (int)s.size()
#define all(s) s.begin(), s.end()
using namespace std;
const int N = 1e5+10;
const int inf = 1e9+7;
int x , a , n , x1 , x2;
set < int > v ;
set < int > :: iterator vi ;
set < int > q ;
set < int > :: iterator qi ;
int main()
{
cin >> n ;
for (int i = 0 ;i < n ;i ++ )
{
x1 = 0 ;
x2 = 0 ;
cin >> x >> a ;
if (i == 0)
{
if (a == 1)
cout << '>' << endl ;
else
cout << '<' << endl ;
if (a == 1)
v.insert (x) ;
else
q.insert (x) ;
}
else
{
if (a == 1)
v.insert (x) ;
else
q.insert (x) ;
if (v.size() == 0)
cout << '<' << endl ;
else
if (q.size() == 0 )
cout << '>' << endl ;
else
{
qi = --q.end();
for (vi = --v.end(); ; vi -- )
{
if ( (*vi) > (*qi))
x1 ++ ;
else
x2 ++ ;
if (qi == q.begin() || vi == v.begin())
break;
qi -- ;
}
if (x1 > x2 && x2 == 0 && x1 == q.size() )
cout << '>' << endl ;
else
if (x1 < x2 && x1 == 0 && x2 == v.size() )
cout << '<' << endl;
else
cout << '?' << endl ;
}
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |