CF1776D.Teamwork

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

As soon as SWERC starts, your experienced 33 -person team immediately realizes that the contest features aa easy problems, bb medium problems, and cc hard problems. Solving a problem will take any of you 22 , 33 , or 44 time units, depending on whether the problem is easy, medium, or hard. Regardless of the difficulty of the problem, the last time unit spent to solve it has to be spent using your shared computer.

You organize your efforts so that each of you starts (and ends) solving problems at integer time units. Any given problem can be solved by only one contestant; it requires a contiguous amount of time (which depends on the difficulty of the problem). None of the 33 of you can solve more than one problem at a time, but you can start solving a new problem immediately after finishing one. Similarly, the shared computer cannot be used by more than one of you at a time, but any of you can start using the computer (to complete the problem currently being solved) immediately after someone else stops using it.

Given that the contest lasts ll time units, find the maximum number of problems that your team can solve. Additionally, find one way to solve the maximum number of problems.

输入格式

The input has a single line. It contains four integers aa , bb , cc , ll ( 0a,b,c,1040 \leq a, b, c, \leq 10^4 , 0l1050 \le l \le 10^5 ) — the number of easy, medium, and hard problems, and the duration of the contest.

输出格式

On the first line, print a single integer nn — the maximum number of problems that your team can solve.

Then, on the jj -th of the following nn lines, print three integers xjx_j , pjp_j , qjq_j ( 1x31 \leq x \leq 3 , 0pj<qjl0 \leq p_j < q_j \leq l ) — the contestant that solves the jj -th problem, and the start and end time for solving the jj -th problem (measured as time units elapsed from the beginning of the contest). The difference qjpjq_j - p_j is 22 , 33 , or 44 , depending on the difficulty of the problem.

The last nn lines are to be provided in increasing order of end time: q1<q2<<qnq_1 < q_2 < \cdots < q_n . If there are multiple ways to solve nn problems, output any of them.

输入输出样例

  • 输入#1

    2 1 1 3

    输出#1

    2
    1 0 2
    2 0 3
  • 输入#2

    1 2 3 5

    输出#2

    4
    1 0 2
    2 0 3
    3 0 4
    1 2 5
  • 输入#3

    0 1 2 2

    输出#3

    0

说明/提示

In the first sample, the first contestant solves an easy problem between time 00 and time 22 while the second contestant solves a medium problem between time 00 and time 33 .

In the second sample, the first contestant solves an easy problem between time 00 and time 22 , and then also solves a medium problem between time 22 and time 55 . In the meantime, the second contestant solves another medium problem between time 00 and time 33 , while the third contestant solves a hard problem between time 00 and time 44 .

In the third sample, the contest only has medium and hard problems, and there is not enough time to solve any of them.

首页