結果

問題 No.2421 entersys?
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-11-15 00:08:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,029 bytes
コンパイル時間 2,924 ms
コンパイル使用メモリ 228,936 KB
実行使用メモリ 33,540 KB
最終ジャッジ日時 2024-11-15 00:08:18
合計ジャッジ時間 12,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 3 ms
6,824 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,824 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 353 ms
24,964 KB
testcase_12 WA -
testcase_13 AC 366 ms
25,092 KB
testcase_14 AC 341 ms
24,964 KB
testcase_15 AC 329 ms
25,088 KB
testcase_16 AC 385 ms
28,292 KB
testcase_17 AC 357 ms
28,292 KB
testcase_18 AC 361 ms
28,292 KB
testcase_19 AC 391 ms
28,292 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 249 ms
24,448 KB
testcase_23 AC 463 ms
33,540 KB
testcase_24 AC 436 ms
33,280 KB
testcase_25 AC 466 ms
33,156 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

#include <atcoder/fenwicktree>
using namespace atcoder;
int main() {
	fast_io();
	int n;
	cin >> n;
	vector<string> X(n);
	vector<int> L(n), R(n);
	vector<int> times;
	for (int i = 0; i < n; i++) {
		cin >> X[i] >> L[i] >> R[i];
		times.push_back(L[i]);
		times.push_back(R[i]);
	}
	int q;
	cin >> q;
	vector<int> com(q);
	vector<string> x(q);
	vector<int> t(q), l(q), r(q);
	for (int i = 0; i < q; i++) {
		cin >> com[i];
		if (com[i] == 1) {
			cin >> x[i] >> t[i];
			times.push_back(t[i]);
		} else if (com[i] == 2) {
			cin >> t[i];
			times.push_back(t[i]);
		} else {
			cin >> x[i] >> l[i] >> r[i];
			times.push_back(l[i]);
			times.push_back(r[i]);
		}
	}
	sort(times.begin(), times.end());
	times.erase(unique(times.begin(), times.end()), times.end());
	int m = times.size();
	fenwick_tree<int> fw(m + 1);
	map<string, set<pair<int, int>>> mp;
	for (int i = 0; i < n; i++) {
		L[i] = lower_bound(times.begin(), times.end(), L[i]) - times.begin();
		R[i] =
			lower_bound(times.begin(), times.end(), R[i] + 1) - times.begin();
		fw.add(L[i], 1);
		fw.add(R[i], -1);
		mp[X[i]].insert({L[i], R[i]});
	}
	for (int i = 0; i < q; i++) {
		if (com[i] == 1) {
			t[i] =
				lower_bound(times.begin(), times.end(), t[i]) - times.begin();
			auto it = mp[x[i]].lower_bound({t[i] + 1, -1});
			if (it == mp[x[i]].begin()) {
				cout << "No\n";
			} else {
				it--;
				int l = it->first, r = it->second;
				if (l <= t[i] && t[i] <= r) {
					cout << "Yes\n";
				} else {
					cout << "No\n";
				}
			}
		} else if (com[i] == 2) {
			t[i] =
				lower_bound(times.begin(), times.end(), t[i]) - times.begin();
			cout << fw.sum(0, t[i] + 1) << "\n";
		} else {
			l[i] =
				lower_bound(times.begin(), times.end(), l[i]) - times.begin();
			r[i] = lower_bound(times.begin(), times.end(), r[i] + 1) -
				   times.begin();
			fw.add(l[i], 1);
			fw.add(r[i], -1);
			mp[x[i]].insert({l[i], r[i]});
		}
	}
}
0