답안 #692377

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
692377 2023-02-01T11:33:22 Z Lextyle Trampoline (info1cup20_trampoline) C++17
0 / 100
246 ms 27252 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[30][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 = 29; 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 3 ms 1620 KB 200 token(s): yes count is 21, no count is 179
2 Incorrect 3 ms 1752 KB expected YES, found NO [150th token]
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 72 ms 26172 KB 4000 token(s): yes count is 99, no count is 3901
2 Correct 71 ms 26196 KB 4000 token(s): yes count is 91, no count is 3909
3 Correct 69 ms 26212 KB 4000 token(s): yes count is 4000, no count is 0
4 Incorrect 71 ms 26200 KB expected YES, found NO [544th token]
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 201 ms 27096 KB expected YES, found NO [3374th token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 1364 KB 5000 token(s): yes count is 3238, no count is 1762
2 Correct 6 ms 1368 KB 5000 token(s): yes count is 3837, no count is 1163
3 Incorrect 8 ms 1404 KB expected YES, found NO [1820th token]
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 246 ms 27252 KB expected YES, found NO [1811th token]
2 Halted 0 ms 0 KB -