QOJ.ac

QOJ

Time Limit: 6 s Memory Limit: 512 MB Total points: 100

#18767. 수열과 쿼리 9

Statistics

Даны две последовательности длины $N$: $A_1, A_2, \ldots, A_N$ и $B_1, B_2, \ldots, B_N$. Напишите программу для обработки следующих запросов:

  • i j k: вывести количество пар $(p, q)$, таких что $i \le p, q \le j$ и $A_p \times B_q \le k$.

Входные данные

Первая строка содержит длину $N$ последовательностей $(1 \le N \le 100{,}000)$.

Вторая строка содержит $A_1, A_2, \ldots, A_N$ $(1 \le A_i \le 100{,}000)$.

Третья строка содержит $B_1, B_2, \ldots, B_N$ $(1 \le B_i \le 100{,}000)$.

Четвертая строка содержит количество запросов $M$ $(1 \le M \le 100{,}000)$.

Следующие $M$ строк содержат по одному запросу $i, j, k$ $(1 \le i \le j \le N, 1 \le k \le 100{,}000)$.

Выходные данные

Для каждого запроса выведите ответ на отдельной строке.

Примеры

Входные данные 1

5
1 1 1 1 1
1 1 1 1 1
1
1 5 1

Выходные данные 1

25

Discussions

About Discussions

The discussion section is only for posting: General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.