답안 #692380

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
692380 2023-02-01T11:36:32 Z Lextyle Trampoline (info1cup20_trampoline) C++17
66 / 100
326 ms 39492 KB
#include <bits/stdc++.h>
#pragma warning(disable : 4996)
#pragma warning(disable : 6031)
#define USACO freopen("moocast.in", "r", stdin); freopen("moocast.out", "w+", stdout)
#define fastIO ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL)
#define ll long long
using namespace std;

ll binpow(ll a, ll x, ll m) {
	ll ans = 1, md = a % m;
	for (int i = 0; i < 63; i++) {
		if (x & ((ll)1 << i)) ans = (ans * md) % m;
		md = (md * md) % m;
	}
	return ans;
}

vector<ll> gcd(ll a, ll b) {
	if (b == 0) {
		return { a, 1, 0 };
	}
	vector<ll> d = gcd(b, a % b);
	return { d[0], d[2], d[1] - d[2] * (a / b) };
}

ll lcm(ll a, ll b) {
	return a * b / gcd(a, b)[0];
}
pair<int, int> p[200000];
int f[200000], binlifting[32][200001];

void solve() {
	int r, c, n, T;
	cin >> r >> c >> n;
	for (int i = 0; i < n; i++) cin >> p[i].first >> p[i].second;
	sort(p, p + n);
	for (int i = 0; i < n; i++) {
		auto it = lower_bound(p, p + n, pair<int, int>{p[i].first + 1, p[i].second});
		if (it == p + n || it->first != p[i].first + 1) f[i] = n;
		else f[i] = it - p;
	}
	for (int i = 0; i < n; i++) binlifting[0][i] = f[i];
	for (int i = 0; i <= 30; i++) binlifting[i][n] = n;
	for (int k = 1; k <= 30; k++) {
		for (int i = 0; i < n; i++) binlifting[k][i] = binlifting[k - 1][binlifting[k - 1][i]];
	}
	cin >> T;
	while (T--) {
		int x1, y1, x2, y2;
		cin >> x1 >> y1 >> x2 >> y2;
		if (x2 < x1) {
			cout << "No\n";
			continue;
		}
		if (x2 == x1) {
			if (y1 <= y2) cout << "Yes\n";
			else cout << "No\n";
			continue;
		}
		x2--;
		int green = lower_bound(p, p + n, pair<int, int>{ x1, y1 }) - p, dist = x2 - x1;
		for (int bit = 30; bit >= 0; bit--) {
			if (dist & (1 << bit)) green = binlifting[bit][green];
		}
		if (green != n && p[green].second <= y2) cout << "Yes\n";
		else cout << "No\n";
	}
}

int main() {
	//USACO;
	fastIO;
	solve();
}

Compilation message

trampoline.cpp:2: warning: ignoring '#pragma warning ' [-Wunknown-pragmas]
    2 | #pragma warning(disable : 4996)
      | 
trampoline.cpp:3: warning: ignoring '#pragma warning ' [-Wunknown-pragmas]
    3 | #pragma warning(disable : 6031)
      |
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 1620 KB 200 token(s): yes count is 21, no count is 179
2 Correct 3 ms 1748 KB 200 token(s): yes count is 70, no count is 130
3 Incorrect 3 ms 1420 KB expected NO, found YES [52nd token]
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 70 ms 26920 KB 4000 token(s): yes count is 99, no count is 3901
2 Correct 80 ms 26840 KB 4000 token(s): yes count is 91, no count is 3909
3 Correct 80 ms 26980 KB 4000 token(s): yes count is 4000, no count is 0
4 Correct 70 ms 26864 KB 4000 token(s): yes count is 1991, no count is 2009
# 결과 실행 시간 메모리 Grader output
1 Incorrect 177 ms 27580 KB expected NO, found YES [5147th token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 1108 KB 5000 token(s): yes count is 3238, no count is 1762
2 Correct 7 ms 1236 KB 5000 token(s): yes count is 3837, no count is 1163
3 Correct 5 ms 1200 KB 5000 token(s): yes count is 4104, no count is 896
4 Correct 5 ms 1448 KB 5000 token(s): yes count is 3934, no count is 1066
5 Correct 7 ms 1344 KB 5000 token(s): yes count is 3384, no count is 1616
6 Correct 5 ms 1364 KB 5000 token(s): yes count is 3390, no count is 1610
# 결과 실행 시간 메모리 Grader output
1 Correct 253 ms 27588 KB 200000 token(s): yes count is 171404, no count is 28596
2 Correct 287 ms 39228 KB 200000 token(s): yes count is 161254, no count is 38746
3 Correct 206 ms 39376 KB 200000 token(s): yes count is 117455, no count is 82545
4 Correct 326 ms 39196 KB 200000 token(s): yes count is 182118, no count is 17882
5 Correct 227 ms 39284 KB 200000 token(s): yes count is 167565, no count is 32435
6 Correct 245 ms 39436 KB 200000 token(s): yes count is 156797, no count is 43203
7 Correct 203 ms 39492 KB 200000 token(s): yes count is 156797, no count is 43203
8 Correct 221 ms 39388 KB 200000 token(s): yes count is 122100, no count is 77900
9 Correct 280 ms 39196 KB 200000 token(s): yes count is 139670, no count is 60330
10 Correct 268 ms 39232 KB 200000 token(s): yes count is 165806, no count is 34194
11 Correct 268 ms 39232 KB 200000 token(s): yes count is 175646, no count is 24354
12 Correct 210 ms 39372 KB 200000 token(s): yes count is 134695, no count is 65305
13 Correct 193 ms 39372 KB 200000 token(s): yes count is 126733, no count is 73267
14 Correct 223 ms 39320 KB 200000 token(s): yes count is 155290, no count is 44710
15 Correct 215 ms 39344 KB 200000 token(s): yes count is 129674, no count is 70326