• CF div2 325 C


    C. Gennady the Dentist
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Gennady is one of the best child dentists in Berland. Today n children got an appointment with him, they lined up in front of his office.

    All children love to cry loudly at the reception at the dentist. We enumerate the children with integers from 1 to n in the order they go in the line. Every child is associated with the value of his cofidence pi. The children take turns one after another to come into the office; each time the child that is the first in the line goes to the doctor.

    While Gennady treats the teeth of the i-th child, the child is crying with the volume of vi. At that the confidence of the first child in the line is reduced by the amount of vi, the second one — by value vi - 1, and so on. The children in the queue after the vi-th child almost do not hear the crying, so their confidence remains unchanged.

    If at any point in time the confidence of the j-th child is less than zero, he begins to cry with the volume of dj and leaves the line, running towards the exit, without going to the doctor's office. At this the confidence of all the children after the j-th one in the line is reduced by the amount of dj.

    All these events occur immediately one after the other in some order. Some cries may lead to other cries, causing a chain reaction. Once in the hallway it is quiet, the child, who is first in the line, goes into the doctor's office.

    Help Gennady the Dentist to determine the numbers of kids, whose teeth he will cure. Print their numbers in the chronological order.

    Input

    The first line of the input contains a positive integer n (1 ≤ n ≤ 4000) — the number of kids in the line.

    Next n lines contain three integers each vi, di, pi (1 ≤ vi, di, pi ≤ 106) — the volume of the cry in the doctor's office, the volume of the cry in the hall and the confidence of the i-th child.

    Output

    In the first line print number k — the number of children whose teeth Gennady will cure.

    In the second line print k integers — the numbers of the children who will make it to the end of the line in the increasing order.

    Sample test(s)
    input
    5
    4 2 2
    4 1 2
    5 2 4
    3 3 5
    5 1 2
    output
    2
    1 3
    input
    5
    4 5 1
    5 3 9
    4 1 2
    2 1 8
    4 1 9
    output
    4
    1 2 4 5
    Note

    In the first example, Gennady first treats the teeth of the first child who will cry with volume 4. The confidences of the remaining children will get equal to  - 2, 1, 3, 1, respectively. Thus, the second child also cries at the volume of 1 and run to the exit. The confidence of the remaining children will be equal to 0, 2, 0. Then the third child will go to the office, and cry with volume 5. The other children won't bear this, and with a loud cry they will run to the exit.

    In the second sample, first the first child goes into the office, he will cry with volume 4. The confidence of the remaining children will be equal to 5,  - 1, 6, 8. Thus, the third child will cry with the volume of 1 and run to the exit. The confidence of the remaining children will be equal to 5, 5, 7. After that, the second child goes to the office and cry with the volume of 5. The confidences of the remaining children will be equal to 0, 3. Then the fourth child will go into the office and cry with the volume of 2. Because of this the confidence of the fifth child will be 1, and he will go into the office last.

     题目好长,都准备放弃看了的,结果仔细看了一遍发现就是个模拟。

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <iostream>
     4 #include <queue>
     5 #include <vector>
     6 #include <stack>
     7 
     8 using namespace std;
     9 
    10 const int M = 10005;
    11 const int maxn = 5000000;
    12 typedef long long ll;
    13 
    14 vector<int>G[maxn];
    15 queue<int>Q;
    16 stack<int>st;
    17 
    18 
    19 struct node
    20 {
    21     int v,d,p,cnt;
    22 }a[maxn];
    23 
    24 
    25 int main()
    26 {
    27     int n;
    28     scanf("%d",&n);
    29     for(int i=1;i<=n;i++){
    30         scanf("%d%d%d",&a[i].v,&a[i].d,&a[i].p);
    31         a[i].cnt = 0;
    32     }
    33     queue<int>tt;
    34         for(int i=1;i<=n;i++){
    35             if(a[i].cnt == 1) continue;
    36             int tm = a[i].v;
    37             for(int j=i+1;j<=n;j++){
    38 
    39                 if(tm <= 0) break;
    40                 if(a[j].cnt == 1) continue;
    41                 a[j].p -= tm;
    42             if(a[j].p<0){
    43                 tt.push(j);
    44                 a[j].cnt = 1;
    45             }
    46             tm--;
    47             }
    48         while(!tt.empty()){
    49             int t = tt.front();
    50             tt.pop();
    51 
    52             for(int i=t+1;i<=n;i++){
    53                 if(a[i].cnt == 1) continue;
    54                 a[i].p -= a[t].d;
    55                 if(a[i].p<0){
    56                     tt.push(i);
    57                     a[i].cnt = 1;
    58                 }
    59             }
    60         }
    61         }
    62         int ans = 0;
    63         for(int i=1;i<=n;i++){
    64             if(a[i].cnt == 0) ans++;
    65         }
    66         printf("%d
    ",ans);
    67         for(int i=1;i<=n;i++){
    68             if(a[i].cnt == 0) printf("%d ",i);
    69         }
    70 
    71     return 0;
    72 }
    View Code
  • 相关阅读:
    hibernate基础18:HQL
    hibernate基础17:cascade 级联 与 Inverse 反转
    hibernate基础16:有序集合映射
    hibernate基础15:组合主键3
    hibernate基础15:组合主键2
    hibernate基础15:组合主键1
    hibernate基础14:OpenSessionInView(抽取web访问时对数据库开关事务)
    hibernate基础13:关联映射之组件映射
    hibernate基础12:关联映射之基于主键的双项多对多
    Jmeter CSV数据文件设置使用之一
  • 原文地址:https://www.cnblogs.com/lmlyzxiao/p/4873361.html
Copyright © 2020-2023  润新知