Submission #883383

#TimeUsernameProblemLanguageResultExecution timeMemory
883383catloverRuka (COI15_ruka)C++14
9 / 100
2036 ms2860 KiB
#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; }

Compilation message (stderr)

ruka.cpp: In function 'int32_t main()':
ruka.cpp:5:56: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
    5 | #define file(task) if(fopen(task".inp", "r")) { freopen(task".inp", "r", stdin); freopen(task".out", "w", stdout); }
      |                                                 ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ruka.cpp:88:3: note: in expansion of macro 'file'
   88 |   file("SIMULATION");
      |   ^~~~
ruka.cpp:5:89: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
    5 | #define file(task) if(fopen(task".inp", "r")) { freopen(task".inp", "r", stdin); freopen(task".out", "w", stdout); }
      |                                                                                  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
ruka.cpp:88:3: note: in expansion of macro 'file'
   88 |   file("SIMULATION");
      |   ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...