# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
948956 | vjudge1 | Land of the Rainbow Gold (APIO17_rainbow) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define endl '\n'
#define mp make_pair
#define pb push_back
#define f first
#define s second
#define fo(i,n) for(auto i =0 ; i < n;i++)
#define fore(i,l,r) for(auto i = l; i < r;i++)
#define forex(i,r,l) for(auto i = r; i >= l; i--)
#define ffo(i,n) forex(i,n-1,0)
#define all(x) x.begin(),x.end()
#define lsb(x) x&(-x)
#define sz(x) (int)x.size()
#define gcd(a,b) __gcd(a,b)
#define vii vector<ii>
using namespace std;
using ii = pair<int,int>; using ll = long long; using ull = unsigned long long;
using vi = vector<ll>;
void valid(int in){cout<<((in)?"YES\n":"NO\n");return;}
vii posit;
void init(int n, int m, int sr ,int sc, int movs, char *moves){
posit.pb({sr,sc});
fo(i,movs){
if(moves[i] == 'N')sr--;
else if(moves[i]=='S')sr++;
else if(moves[i]=='E')sc++;
else if(moves[i]=='W')sc--;
posit.pb({sr,sc});
}
}
int colour(int r1, int c1, int r2 ,int c2){
vi cont(c2+1, 0);
for(auto v : posit){
if(v.f >= r1 and v.f <= r2 and v.s >= c1+1 and v.s <= c2){
cont[v.s]++;
}
}int con = 0;
fore(i,c1,c2+1){
con += (cont[i] == r2-r1+1);
}return con + (cont[c2] != r2-r1+1);
}
void test_case(){
int n,m; cin >> n >> m;
int movs,q; cin >> movs >> q;
int sr,sc; cin >> sr >> sc;
char *moves; cin >> moves;
init(n,m,sr,sc,movs,moves);
while(q--){
int r1,c1,r2,c2; cin >> r1 >> c1 >> r2 >> c2;
cout << colour(r1,c1,r2,c2) << endl;
}
}
int main(){cin.tie(0)->sync_with_stdio(0);
int t;t=1;
while(t--)test_case();
}