CF1252G.Performance Review

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Randall is a software engineer at a company with NN employees. Every year, the company re-evaluates its employees. At the end of every year, the company replaces its several worst-performing employees and replaces with the same number of new employees, so that the company keeps having NN employees. Each person has a constant performance and can be represented by an integer (higher integer means better performance), and no two people have the same performance.

The performance of the initial employees are represented by an array of integers A=[A1,A2,,AN]A = [A_1, A_2, \dots, A_N] where AiA_i is the performance of the ithi^{th} employee. Randall is employee 11 , so his performance is A1A_1 . We will consider the first MM years. At the end of the ithi^{th} year, the company replaces its RiR_i worst-performing employees and replaces with RiR_i new employees. The performance of these new employees are represented by an array of integers Bi=[(Bi)1,(Bi)2,,(Bi)Ri]B_i = [(B_i)_1, (B_i)_2, \dots, (B_i)_{R_i}] where (Bi)j(B_i)_j is the performance of the jthj^{th} new employee.

He will consider QQ scenarios. On the ithi^{th} scenario, he will change the value of (BXi)Yi(B_{X_i})_{Y_i} to ZiZ_i . For each scenario, Randall is wondering whether he will still be in the company after MM years. Note that the changes in each scenario are kept for the subsequent scenarios.

输入格式

Input begins with a line containing three integers: NN MM QQ ( 2N1000002 \le N \le 100\,000 ; 1M,Q1000001 \le M, Q \le 100\,000 ) representing the number of employees, the number of years to be considered, and the number of scenarios, respectively. The next line contains NN integers: AiA_i ( 0Ai1090 \le A_i \le 10^9 ) representing the performance of the initial employees. The next MM lines each contains several integers: RiR_i (Bi)1(B_i)_1 , (Bi)2(B_i)_2 , \cdots , (Bi)Ri(B_i)_{R_i} ( 1Ri<N1 \le R_i < N ; 0(Bi)j1090 \le (B_i)_j \le 10^9 ) representing the number of employees replaced and the performance of the new employees, respectively. It is guaranteed that the sum of RiR_i does not exceed 10610^6 . The next QQ lines each contains three integers: XiX_i YiY_i ZiZ_i ( 1XiM1 \le X_i \le M ; 1YiR(Xi)1 \le Y_i \le R_{(X_i)} ; 0Zi1090 \le Z_i \le 10^9 ) representing a scenario. It is guaranteed that all integers in all AiA_i , (Bi)j(B_i)_j , and ZiZ_i (combined together) are distinct.

输出格式

For each scenario in the same order as input, output in a line an integer 00 if Randall will not be in the company after MM years, or 11 if Randall will still be in the company after MM years.

输入输出样例

  • 输入#1

    5 3 3
    50 40 30 20 10
    4 1 2 3 100
    1 4
    2 6 7
    1 3 300
    2 1 400
    2 1 5
    

    输出#1

    1
    0
    1
    

说明/提示

Explanation for the sample input/output #1

Randall performance is represented by 5050 . For the first scenario, the value of (B1)3(B_1)_3 is updated to 300300 , causes the following:

  • Initially, the performance of the employees is [50,40,30,20,10][50, 40, 30, 20, 10] .
  • At the end of the first year, 44 worst-performing employees are replaced by employees with performance [300,100,2,1][300, 100, 2, 1] . Therefore, the performance of the employees is [300,100,50,2,1][300, 100, 50, 2, 1] .
  • At the end of the second year, the performance of the employees is [300,100,50,4,2][300, 100, 50, 4, 2] .
  • At the end of the third year, the performance of the employees is [300,100,50,7,6][300, 100, 50, 7, 6] .

Therefore, Randall will still be in the company after 33 years.For the second scenario, the value of (B2)1(B_2)_1 is updated to 400400 , causes the following:

  • Initially, the performance of the employees is [50,40,30,20,10][50, 40, 30, 20, 10] .
  • At the end of the first year, the performance of the employees is [300,100,50,2,1][300, 100, 50, 2, 1] . Recall that the change in the first scenario is kept for this scenario as well.
  • At the end of the second year, the performance of the employees is [400,300,100,50,2][400, 300, 100, 50, 2] .
  • At the end of the third year, the performance of the employees is [400,300,100,7,6][400, 300, 100, 7, 6] .

Therefore, Randall will not be in the company after 33 years.

首页