# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
883447 | catlover | Ruka (COI15_ruka) | C++14 | 2041 ms | 2976 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define file(task) if(fopen(task".inp", "r")) { freopen(task".inp", "r", stdin); freopen(task".out", "w", stdout); }
#define FOR(i, a, b) for(int i = (a), _b = (b); i <= _b; ++i)
#define FORD(i, a, b) for(int i = (a), _b = (b); i >= _b; --i)
#define fi first
#define se second
#define mp make_pair
using namespace std;
const int maxN = 1e6;
typedef pair<int, int> pii;
int N, M;
pii p[maxN+5];
void read_input()
{
cin >> N;
FOR(i, 1, N) cin >> p[i].fi >> p[i].se;
}
namespace sub1
{
bool checkX(pii bf, pii aft)
{
return (bf.fi * aft.fi <= 0);
}
bool checkY(pii bf, pii aft)
{
return (bf.se * aft.se <= 0);
}
void solve()
{
int cur = 1;
p[0] = mp(1, 1);
cin >> M;
while(M --> 0)
{
char type; cin >> type;
if(type == 'C')
{
int nx, ny; cin >> nx >> ny;
p[cur] = mp(nx, ny);
}
else if(type == 'Q')
{
int ans = 0;
pii pn = mp(1, 1), pw;
FOR(i, 1, N)
{
pw = mp(pn.fi + p[i].fi, pn.se + p[i].se);
if(checkX(pw, pn)) ++ans;
if(checkY(pw, pn)) ++ans;
pn = pw;
}
cout << ans << '\n';
}
else if(type == 'B')
{
if(cur == 1) continue;
--cur;
}
else
{
if(cur == N) continue;
++cur;
}
}
}
}
void solve()
{
sub1::solve();
}
int32_t main()
{
cin.tie(0)->sync_with_stdio(0);
file("SIMULATION");
read_input();
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |