CodeForces - 253E Table with Letters - 2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces - 253E Table with Letters - 2相关的知识,希望对你有一定的参考价值。


Description:

Lets consider a network printer that functions like that. It starts working at time 0. In each second it can print one page of a text. At some moments of time the printer receives printing tasks. We know that a printer received n tasks. Lets number the tasks by consecutive integers from 1 to n. Then the task number i is characterised by three integers: ti is the time when the task came, si is the tasks volume (in pages) and pi is the tasks priority. The priorities of all tasks are distinct.

When the printer receives a task, the task goes to the queue and remains there until all pages from this task are printed. The printer chooses a page to print each time when it either stops printing some page or when it is free and receives a new task. Among all tasks that are in the queue at this moment, the printer chooses the task with the highest priority and next second prints an unprinted page from this task. You can assume that a task goes to the queue immediately, thats why if a task has just arrived by time t, the printer can already choose it for printing.

You are given full information about all tasks except for one: you dont know this tasks priority. However, we know the time when the last page from this task was finished printing. Given this information, find the unknown priority value and determine the moments of time when the printer finished printing each task.

Input

The first line contains integer n (1 ≤ n ≤ 50000). Next n lines describe the tasks. The i-th of these lines contains three integers tisi and pi, separated by single spaces (0 ≤ ti ≤ 109, 1 ≤ si, pi ≤ 109). Exactly one task (lets assume that his number is x) has number -1 written instead of the priority. All priorities are different. The last line contains integer T — the time when the printer finished printing the last page of task x (1 ≤ T ≤ 1015). Numbers ti are not necessarily distinct. The tasks in the input are written in the arbitrary order.

Output

In the first line print integer px — the priority of the task number x (1 ≤ px ≤ 109, remember that all priorities should be distinct). Then print nintegers, the i-th of them represents the moment of time when the last page of the task number i finished printing.

It is guaranteed that at least one solution exists. If there are multiple solutions, print any of them.

Examples

Input

3 4 3 -1 0 2 2 1 3 3 7

Output

4 7 8 4

Input

3 3 1 2 2 3 3 3 1 -1 4

Output

4 7 6 4

Note

Lets consider the first test case. Lets assume that the unknown priority equals 4, then the printers actions for each second are as follows:

  • the beginning of the 1-st second (time 0). The queue has task 2. The printer prints the first page of this task;
  • the beginning of the 2-nd second (time 1). The queue has tasks 2 and 3. The printer prints the first page of task 3;
  • the beginning of the 3-rd second (time 2). The queue has tasks 2 and 3. The printer prints the second page of task 3;
  • the beginning of the 4-th second (time 3). The queue has tasks 2 and 3. The printer prints the third (last) page of task 3. Thus, by the end of the 4-th second this task will have been printed;
  • the beginning of the 5-th second (time 4). The queue has tasks 2 and 1. The printer prints the first page of task 1;
  • the beginning of the 6-th second (time 5). The queue has tasks 2 and 1. The printer prints the second page of task 1;
  • the beginning of the 7-th second (time 6). The queue has tasks 2 and 1. The printer prints the third (last) page of task 1. Thus, by the end of the 7-th second this task will have been printed;
  • the beginning of the 8-th second (time 7). The queue has task 2. The printer prints the second (last) page of task 2. Thus, by the end of the 8-th second this task will have been printed.

In the end, task number 1 will have been printed by the end of the 7-th second, as was required. And tasks 2 and 3 are printed by the end of the of the 8-th and the 4-th second correspondingly.

二维前缀和记录前面有多少个a,然后枚举每个矩形大小,然后寻找符合条件的。

AC代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<vector>
#include<stdlib.h>
#include<queue>
#include<map>
#include<set>
#include<iomanip>
#include<math.h>
using namespace std;
typedef long long ll;
typedef double ld;
const int N = 1e6+10;
int n,m,o,sum[405][405],cnt[30],a[405][405];
ll ans;
char s[405];

int main()

//freopen("input.txt","r",stdin);
//freopen("output.txt","w",stdout);
scanf("%d %d %d",&n,&m,&o);
for(int i=1; i<=n; i++)

scanf("%s",s);
for(int j=0; j<m; j++)
a[i][j+1] = s[j]-a;

for(int i=1; i<=n; i++)

for(int j=1; j<=m; j++)

sum[i][j]=sum[i][j-1]+sum[i-1][j]-sum[i-1][j-1];//二维前缀和
if(a[i][j]==0)
sum[i][j]++;


for(int i=1; i<=n; i++)

for(int j=i+1; j<=n; j++)

for(int k=0; k<26; k++)
cnt[k]=0;
int l=1;
for(int k=1; k<=m; k++)//k为有端点,l为左端点

if(a[i][k]==a[j][k])

while(l<k&&sum[j][k]-sum[j][l-1]-sum[i-1][k]+sum[i-1][l-1]>o)

if(a[i][l]==a[j][l])

cnt[a[i][l]]--;
//cout<<i<<" "<<l<<" "<<j<<endl;
//cout<<cnt[a[i][l]]<<endl;
//cout<<a[i][l]<<endl;

l++;

ans+=cnt[a[i][k]];
//cnt[a[i][k]]++;
//cout<<a[i][k]<<" "<<cnt[a[i][k]]<<endl;




printf("%lld\\n", ans);
return 0;

 

以上是关于CodeForces - 253E Table with Letters - 2的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 577A - Multiplication Table

Codeforces 754E:Dasha and cyclic table

Codeforces 650C Table Compression (并查集)

Codeforces E. Number Table

Codeforces 140ANew Year Table

Codeforces Round #586 (Div. 1 + Div. 2) B. Multiplication Table