HDU 4578 Transformation (선분 트 리 + 기술 있 는 게 으 름 표시 내 려 놓 기)
Yuanfang is puzzled with the question below: There are n integers, a 1, a 2, …, a n. The initial values of them are 0. There are four kinds of operations. Operation 1: Add c to each number between a x and a y inclusive. In other words, do transformation a k Operation 2: Multiply c to each number between a x and a y inclusive. In other words, do transformation a k Operation 3: Change the numbers between a x and a y to c, inclusive. In other words, do transformation a k Operation 4: Get the sum of p power among the numbers between a x and a y inclusive. In other words, get the result of a x p+a x+1 p+…+a y p. Yuanfang has no idea of how to do it. So he wants to ask you to help him.
Input
There are no more than 10 test cases. For each case, the first line contains two numbers n and m, meaning that there are n integers and m operations. 1 <= n, m <= 100,000. Each the following m lines contains an operation. Operation 1 to 3 is in this format: "1 x y c" or "2 x y c" or "3 x y c". Operation 4 is in this format: "4 x y p". (1 <= x <= y <= n, 1 <= c <= 10,000, 1 <= p <= 3) The input ends with 0 0.
Output
For each operation 4, output a single integer in one line representing the result. The answer may be quite large. You just need to calculate the remainder of the answer when divided by 10007.
Sample Input
5 5
3 3 5 7
1 2 4 4
4 1 5 2
2 2 5 8
4 3 5 3
0 0
Sample Output
307
7489
제목: 현재 초기 값 이 모두 0 인 시퀀스 를 보 여 줍 니 다. 현재 총 4 가지 조작 이 있 습 니 다.
조작 1: [l, r] 구간 의 모든 수 에 x 를 추가 합 니 다.
조작 2: [l, r] 구간 의 모든 수 를 x 로 곱 하기;
조작 3: [l, r] 구간 의 모든 수 를 x 로 바 꿉 니 다.
조작 4: [l, r] 구간 의 각 수의 p 제곱 의 합 을 계산한다.
문제 풀이: 직접 기록 한 방법 에 따 르 면 이 문제 의 게 으 른 표 시 는 매우 복잡 할 것 이다. 그러나 이 문제 의 시간 은 8 초 를 주 었 고 데이터 도 매우 특별 하 며 시작 데 이 터 는 모두 0 이다.지금 우리 가 매번 변경 한 후에 그 구간 의 값 도 같 아야 하기 때문에 우 리 는 구간 의 같은 수의 조작 합 을 직접 계산 할 수 있다.
sum=(r-l+1)*a[rt]^p;메모: 업데이트 와 구 화 를 할 때마다 게 으 른 표 시 를 주의해 야 합 니 다.
#include
#include
#include
#include
#include
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.