結果

問題 No.2359 A in S ?
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-06-23 22:40:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,146 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 215,208 KB
実行使用メモリ 15,040 KB
最終ジャッジ日時 2024-07-01 02:25:01
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 5 ms
6,944 KB
testcase_02 AC 5 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int gcd(int a, int b) {
	return (a ? gcd(a, b % a) : b);
}
int main () {
	int N, M;
	cin >> N >> M;
	std::vector<tuple<int, int, int, int>> X;
	vector<int> cnt1(100010, 0);
	const int H = 300;
	vector<vector<vector<pair<int, int>>>> cnt2(H, vector<vector<pair<int, int>>>(H));
	for (int i = 0; i < N; i ++) {
		int l, r, x, y;
		cin >> l >> r >> x >> y;
		if (x < H) {
			X.emplace_back(l, r, x, y);
		} else {
			for (int j = 0; j * x + y <= r; j ++) {
				if (j * x + y >= l) cnt1[j * x + y] ++;
			}
		}
	}
	/*for (int i = 1; i < H; i ++) {
		for (int j = 0; j < i; j ++) {
			auto& a = cnt2[i][j];
			a.emplace_back(-1, 0);
			sort(a.begin(), a.end());
			for (int k = 1; k < a.size(); k ++) {
				a[k].second += a[k].second;
			}
		}
	}*/
	while (M --) {
		int a;
		cin >> a;
		int ans = cnt1[a];
        for (auto [l, r, x, y] : X) {
            ans += (l <= a && a <= r && (a % x == y));
        }
		/*for (int i = 1; i < H; i ++) {
			// auto pt = lower_bound(cnt2[i][a % i].begin(), cnt2[i][a % i].end(), make_pair(a + 1, -1));
			ans += prev(pt) -> second;
		}*/
		cout << ans << endl;
	}
}
0