답안 #1104845

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1104845 2024-10-24T14:17:55 Z abushbandit_ Trampoline (info1cup20_trampoline) C++17
46 / 100
859 ms 111648 KB
#pragma GCC target("avx,avx2,fma")
#pragma GCC optimize("Ofast,unroll-loops")

#include "bits/stdc++.h"

using namespace std;

//~ #ifndef ONLINE_JUDGE
//~ #include "debug.h"
//~ #else
//~ #define debug(...)
//~ #define debugArr(...)
//~ #endif

#define int long long
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
#define ff first
#define ss second
#define pb push_back

template<class T, class U> inline bool chmin(T& a, const U& b) { if (a > b) { a = b; return true; } return false; }
template<class T, class U> inline bool chmax(T& a, const U& b) { if (a < b) { a = b; return true; } return false; }

const int inf = 1e9;
const int mod = 1e9 + 7;
const int N = 1e5 + 5;

void solve() {
	
	int r,c,n;
	cin >> r >> c >> n;
	int a[n],b[n];
	vector<pair<int,int>> v;
	map<int,vector<pair<int,int>>> mp;
	set<int> st;
	for(int i = 0;i < n;i++) {
		cin >> a[i] >> b[i];
		v.pb({a[i],b[i]});
		st.insert(a[i]);
	}
	sort(all(v));
	reverse(all(v));
	int id = 0;
	vector<vector<pair<int,int>>> up(n,vector<pair<int,int>> (20,{-1,-1}));
	vector<int> pr(n,-1);
	
	for(auto [i,j] : v) {
		mp[i].pb({j,id++});
	}
	for(auto i : st) sort(all(mp[i]));
	id = 0;
	int last = -1;
	for(auto [i,j] : v) {
		if(mp.find(i + 1) == mp.end()) {
			last = i;
			id++;
			continue;
		}
		int lst = pr[id - 1] - 1;
		if(pr[id - 1] == -1 || last != i) lst = mp[i + 1].size() - 1;
		while(lst >= 0 && mp[i + 1][lst].ff >= j) {
			lst--;
		}
		lst++;
		pr[id] = lst;
		if(lst == (int)mp[i + 1].size()) continue;
		up[id][0] = {mp[i + 1][lst]};
		for(int k = 1;k < 20;k++) {
			if(up[id][k - 1].ss == -1) break;
			up[id][k] = {up[up[id][k - 1].ss][k - 1]}; 
			//~ if(last == i) {
				//~ if(up[id - 1][k].ff < up[id][k].ff) {
					//~ up[id - 1][k] = up[id][k];
				//~ }
			//~ }	
		}
		id++;
		last = i;
	}
	auto get = [&](int a,int k) -> int {
		int val = inf;
		for(int i = 0;i < 20;i++) {
			if(k >> i & 1) {
				val = up[a][i].ff;
				a = up[a][i].ss;
				if(a == -1) {
					return -1;
				}
			}
		}
		return val;
	};
	
	
	int q;
	cin >> q;
	while(q--) {
		int xs,ys,xf,yf;
		cin >> xs >> ys >> xf >> yf;
		if(xs == xf && ys <= yf) {
			cout << "Yes\n";
			continue;
		} else if(xs == xf) {
			cout << "No\n";
			continue;
		}
		int ans = -1,l = 0,r = mp[xs].size();
		while(l <= r) {
			int mid = l + (r - l) / 2;
			if(mp[xs][mid].ff >= ys) {
				r = mid - 1;
			} else {
				l = mid + 1;
			}
		}
		ans = r + 1;
		if(ans == (int)mp[xs].size() || xf < xs) {
			cout << "No\n";
		} else {
			int x;
			if(xf - xs == 1) {
				x = mp[xs][ans].ff; 
			} else {
				x = get(mp[xs][ans].ss,xf - xs - 1);
			}
			if(x <= yf && x != -1) {
				cout << "Yes\n";
			} else {
				cout << "No\n";
			}
		}
	}
}

signed main() {
	
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);cout.tie(nullptr);
	
	int t = 1;
	//~ cin >> t;
	while(t--) {
		solve();
	}
	
	
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 4056 KB expected YES, found NO [1st token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 157 ms 84892 KB expected YES, found NO [3rd token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 241 ms 84616 KB expected NO, found YES [5147th token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 2384 KB 5000 token(s): yes count is 3238, no count is 1762
2 Correct 6 ms 2384 KB 5000 token(s): yes count is 3837, no count is 1163
3 Correct 8 ms 3152 KB 5000 token(s): yes count is 4104, no count is 896
4 Correct 7 ms 2384 KB 5000 token(s): yes count is 3934, no count is 1066
5 Correct 9 ms 2640 KB 5000 token(s): yes count is 3384, no count is 1616
6 Correct 7 ms 2608 KB 5000 token(s): yes count is 3390, no count is 1610
# 결과 실행 시간 메모리 Grader output
1 Correct 647 ms 95428 KB 200000 token(s): yes count is 171404, no count is 28596
2 Correct 518 ms 87472 KB 200000 token(s): yes count is 161254, no count is 38746
3 Correct 311 ms 83640 KB 200000 token(s): yes count is 117455, no count is 82545
4 Correct 859 ms 111648 KB 200000 token(s): yes count is 182118, no count is 17882
5 Correct 473 ms 93660 KB 200000 token(s): yes count is 167565, no count is 32435
6 Correct 319 ms 85432 KB 200000 token(s): yes count is 156797, no count is 43203
7 Correct 342 ms 85432 KB 200000 token(s): yes count is 156797, no count is 43203
8 Correct 314 ms 83464 KB 200000 token(s): yes count is 122100, no count is 77900
9 Correct 679 ms 93656 KB 200000 token(s): yes count is 139670, no count is 60330
10 Correct 732 ms 93568 KB 200000 token(s): yes count is 165806, no count is 34194
11 Correct 766 ms 102412 KB 200000 token(s): yes count is 175646, no count is 24354
12 Correct 254 ms 85432 KB 200000 token(s): yes count is 134695, no count is 65305
13 Correct 251 ms 85156 KB 200000 token(s): yes count is 126733, no count is 73267
14 Correct 487 ms 84924 KB 200000 token(s): yes count is 155290, no count is 44710
15 Correct 275 ms 84664 KB 200000 token(s): yes count is 129674, no count is 70326