結果

問題 No.2885 Range Triangle Collision Decision Queries
ユーザー t98slidert98slider
提出日時 2024-09-08 19:22:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 759 bytes
コンパイル時間 4,933 ms
コンパイル使用メモリ 268,580 KB
実行使用メモリ 20,404 KB
最終ジャッジ日時 2024-09-08 19:23:09
合計ジャッジ時間 25,301 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 228 ms
20,212 KB
testcase_16 AC 235 ms
20,040 KB
testcase_17 AC 168 ms
20,256 KB
testcase_18 AC 243 ms
20,196 KB
testcase_19 AC 211 ms
20,192 KB
testcase_20 AC 208 ms
20,220 KB
testcase_21 AC 231 ms
20,216 KB
testcase_22 AC 188 ms
20,196 KB
testcase_23 AC 266 ms
20,276 KB
testcase_24 AC 237 ms
20,108 KB
testcase_25 AC 249 ms
20,268 KB
testcase_26 AC 254 ms
20,156 KB
testcase_27 AC 289 ms
20,048 KB
testcase_28 AC 264 ms
20,184 KB
testcase_29 AC 293 ms
20,160 KB
testcase_30 AC 290 ms
20,184 KB
testcase_31 AC 295 ms
20,276 KB
testcase_32 AC 252 ms
20,180 KB
testcase_33 AC 263 ms
20,160 KB
testcase_34 AC 249 ms
20,268 KB
testcase_35 AC 280 ms
20,108 KB
testcase_36 AC 294 ms
20,192 KB
testcase_37 AC 254 ms
20,372 KB
testcase_38 AC 255 ms
20,220 KB
testcase_39 AC 308 ms
20,336 KB
testcase_40 AC 233 ms
20,256 KB
testcase_41 AC 237 ms
20,200 KB
testcase_42 AC 320 ms
20,232 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 60 ms
6,940 KB
testcase_50 AC 46 ms
6,944 KB
testcase_51 AC 47 ms
6,940 KB
testcase_52 WA -
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
constexpr ll INF = 1ll << 60;

using S = tuple<ll,ll,ll>;
S op(S lhs, S rhs){
	auto [a1, b1, c1] = lhs;
	auto [a2, b2, c2] = rhs;
	return make_tuple(max(a1, a1), min(b1, b2), min(c1, c2));
}
constexpr S e(){
	return make_tuple(-INF, INF, INF);
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
	int n, Q;
	cin >> n;
	vector<S> a(n);
	for(int i = 0; i < n; i++){
		ll x, y, d;
		cin >> x >> y >> d;
		a[i] = make_tuple(y - d, x + y, -(x - y));
	}
	atcoder::segtree<S, op, e> seg(a);
	cin >> Q;
	while(Q--){
		int s, l, r;
		cin >> s >> l >> r;
		s--, l--;
		auto [y, u, v] = op(a[s], seg.prod(l, r));
		cout << (u + v > 2 * y ? "Yes" : "No") << '\n';
	}
}
0