Pagini recente » Cod sursa (job #2298791) | Cod sursa (job #1699441) | Cod sursa (job #1434631) | Cod sursa (job #368541) | Cod sursa (job #161388)
Cod sursa(job #161388)
program p1;
var a,b:array[1..100] of longint;
f1,f2:text;
n,j,i,l,m:integer;
k,aux,max:longint;
begin
assign(f1,'carnati.in');
reset(f1);
readln(f1,n,k);
for i:=1 to n do
readln(f1,a[i],b[i]);
close(f1);
for i:=1 to n do
for j:=1 to n do
for l:=j to n do
begin
aux:=0;
for m:=j to l do
if b[i]<=b[m] then
aux:=aux+b[i];
aux:=aux-k*(a[l]-a[j]+1);
if aux>max then
max:=aux;
end;
assign(f2,'carnati.out');
rewrite(f2);
writeln(f2,max);
close(f2);
end.