codeforces B. Maximum Absurdity 선분 트 리 에서 최대 값 의 위 치 를 찾 습 니 다.
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
Reforms continue entering Berland. For example, during yesterday sitting the Berland Parliament approved as much as n laws (each law has been assigned a unique number from 1 to n). Today all these laws were put on the table of the President of Berland, G.W. Boosch, to be signed.
This time mr. Boosch plans to sign 2k laws. He decided to choose exactly two non-intersecting segments of integers from 1 to n of length k and sign all laws, whose numbers fall into these segments. More formally, mr. Boosch is going to choose two integers a, b(1 ≤ a ≤ b ≤ n - k + 1, b - a ≥ k) and sign all laws with numbers lying in the segments [a; a + k - 1] and [b; b + k - 1] (borders are included).
As mr. Boosch chooses the laws to sign, he of course considers the public opinion. Allberland Public Opinion Study Centre (APOSC) conducted opinion polls among the citizens, processed the results into a report and gave it to the president. The report contains the absurdity value for each law, in the public opinion. As mr. Boosch is a real patriot, he is keen on signing the laws with the maximum total absurdity. Help him.
Input
The first line contains two integers n and k (2 ≤ n ≤ 2·105, 0 k ≤ n) — the number of laws accepted by the parliament and the length of one segment in the law list, correspondingly. The next line contains n integers x1, x2, ..., xn — the absurdity of each law (1 ≤ xi ≤ 109).
Output
Print two integers a, b — the beginning of segments that mr. Boosch should choose. That means that the president signs laws with numbers from segments [a; a + k - 1] and [b; b + k - 1]. If there are multiple solutions, print the one with the minimum number a. If there still are multiple solutions, print the one with the minimum b.
Examples
input
5 2
3 6 1 1 6
output
1 4
input
6 2
1 1 1 1 1 1
output
1 3
Note
In the first sample mr. Boosch signs laws with numbers from segments [1;2] and [4;5]. The total absurdity of the signed laws equals3 + 6 + 1 + 6 = 16.
In the second sample mr. Boosch signs laws with numbers from segments [1;2] and [3;4]. The total absurdity of the signed laws equals1 + 1 + 1 + 1 = 4.
제목: 두 길이 가 k 인 교차 하지 않 는 구간 을 구하 여 이 두 구간 안의 값 을 최대 로 하고 두 구간 의 시작 위 치 를 출력 합 니 다.
분석: 가장 간단 한 생각 은 각 요소 가 첫 번 째 구간 의 시작 으로 이 구간 안의 요소 의 합 을 구 한 다음 에 다른 구간 을 매 거 하여 최대 치 를 계속 업데이트 하 는 것 이다. 그러나 이렇게 복잡 도가 비교적 높다.
그러나 두 번 째 매 거 진 때 는 선분 트 리 로 최대 치 를 조회 할 수 있 기 때문에 복잡 도 는 O (NLogN) 로 내 려 갈 수 있다.
#include
#define inf 0x3f3f3f3f
using namespace std;
typedef long long ll;
typedef pair pii;
const int N=200010,MOD=1e9+7;
int val[N];
ll sum[N],b[N];
struct st
{
int l,r;
pii mx;
}a[N<<2];
pii MAX(pii a,pii b)
{
if(a.first != b.first) return max(a,b); // ,
return pii(a.first,min(a.second,b.second));
}
void build(int l,int r,int i)
{
a[i].l=l,a[i].r=r;
if(l==r){
a[i].mx.first=b[l];
a[i].mx.second=l;
return;
}
int mid = l+r>>1;
build(l,mid,i<<1);
build(mid+1,r,i<<1|1);
a[i].mx = MAX(a[i<<1].mx,a[i<<1|1].mx);
}
pii query(int l,int r,int i)// ,
{
if(a[i].l>=l && a[i].r<=r) return a[i].mx;
if(a[i].l>r || a[i].r>n>>k;
for(int i=1;i<=n;i++) scanf("%d",val+i);
for(int i=1;i<=n;i++){
sum[i] = sum[i-1]+val[i];
}
for(int i=1;i+k-1<=n;i++)
{
b[i] = sum[i+k-1]-sum[i-1];
}
build(1,n+1-k,1);
int x,y;
ll mx=0;
for(int i=k+1;i+k-1<=n;i++){
pii now = query(1,i-k,1);
if(b[i]+now.first > mx){
x = now.second;
y = i;
mx = b[i]+now.first;
}
}
printf("%d %d
",x,y);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDU - 1166 - 적병 포진 (나무형 수조 또는 선분 수)C 국 의 앙 숙 A 국 은 그동안 군사훈련 을 하고 있 었 기 때문에 C 국 간첩 두목 인 데 릭 과 그의 수하 인 티 디 는 또 바 빠 지기 시작 했다.A 국 가 는 해안선 을 따라 직선 으로 N 개 공병 캠프 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.