답안 #1104836

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1104836 2024-10-24T14:07:42 Z abushbandit_ Trampoline (info1cup20_trampoline) C++17
57 / 100
1028 ms 111796 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];
		if(a[i] > r || b[i] > c) continue;
		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() - 1;
		while(l <= r) {
			int mid = (l + r) >> 1;
			if(mp[xs][mid].ff >= ys) {
				r = mid - 1;
				ans = mid;
			} else {
				l = mid + 1;
			}
		}
		assert(xs != xf);
		if(ans == -1 || 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 6 ms 4056 KB expected YES, found NO [1st token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 140 ms 84984 KB expected YES, found NO [3rd token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 211 ms 85180 KB 200000 token(s): yes count is 110486, no count is 89514
2 Correct 236 ms 85644 KB 200000 token(s): yes count is 114664, no count is 85336
3 Correct 229 ms 83852 KB 200000 token(s): yes count is 86232, no count is 113768
4 Correct 283 ms 84844 KB 200000 token(s): yes count is 94603, no count is 105397
5 Correct 287 ms 84980 KB 200000 token(s): yes count is 94148, no count is 105852
6 Correct 450 ms 93360 KB 200000 token(s): yes count is 97163, no count is 102837
# 결과 실행 시간 메모리 Grader output
1 Correct 11 ms 2552 KB 5000 token(s): yes count is 3238, no count is 1762
2 Correct 8 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 10 ms 2384 KB 5000 token(s): yes count is 3390, no count is 1610
# 결과 실행 시간 메모리 Grader output
1 Correct 719 ms 95404 KB 200000 token(s): yes count is 171404, no count is 28596
2 Correct 635 ms 87472 KB 200000 token(s): yes count is 161254, no count is 38746
3 Correct 359 ms 83660 KB 200000 token(s): yes count is 117455, no count is 82545
4 Correct 1028 ms 111796 KB 200000 token(s): yes count is 182118, no count is 17882
5 Correct 553 ms 93616 KB 200000 token(s): yes count is 167565, no count is 32435
6 Correct 375 ms 85644 KB 200000 token(s): yes count is 156797, no count is 43203
7 Correct 329 ms 85444 KB 200000 token(s): yes count is 156797, no count is 43203
8 Correct 313 ms 83720 KB 200000 token(s): yes count is 122100, no count is 77900
9 Correct 689 ms 93404 KB 200000 token(s): yes count is 139670, no count is 60330
10 Correct 626 ms 93616 KB 200000 token(s): yes count is 165806, no count is 34194
11 Correct 704 ms 102404 KB 200000 token(s): yes count is 175646, no count is 24354
12 Correct 237 ms 85688 KB 200000 token(s): yes count is 134695, no count is 65305
13 Correct 285 ms 85352 KB 200000 token(s): yes count is 126733, no count is 73267
14 Correct 407 ms 84956 KB 200000 token(s): yes count is 155290, no count is 44710
15 Correct 236 ms 84920 KB 200000 token(s): yes count is 129674, no count is 70326