結果

問題 No.2359 A in S ?
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-06-23 22:32:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,074 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 217,124 KB
実行使用メモリ 8,992 KB
最終ジャッジ日時 2024-07-01 02:16:56
合計ジャッジ時間 13,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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) {
			cnt2[x][y].emplace_back(l, 1);
			cnt2[x][y].emplace_back(r + 1, -1);
		} 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 (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