UVa 12627 Erratic Expansion 이상한 풍선 팽창(분치_귀속) 백서 P245
The arrangements of the balloons after the 0-th, 1-st, 2-nd and 3-rd hour are depicted in the following diagram.
As you can see, a red balloon in the cell (i, j) (that is i-th row and j-th column) will multiply to produce 3 red balloons in the cells (i ∗ 2 − 1, j ∗ 2 − 1), (i ∗ 2 − 1, j ∗ 2), (i ∗ 2, j ∗ 2 − 1) and a blue balloon in the cell (i ∗ 2, j ∗ 2). Whereas, a blue balloon in the cell (i, j) will multiply to produce 4 blue balloons in the cells (i ∗ 2 − 1, j ∗ 2 − 1), (i ∗ 2 − 1, j ∗ 2), (i ∗ 2, j ∗ 2 − 1) and (i ∗ 2, j ∗ 2). The grid size doubles (in both the direction) after every hour in order to accommodate the extra balloons. In this problem, Piotr is only interested in the count of the red balloons; more specifically, he would like to know the total number of red balloons in all the rows from A to B after K-th hour.
Input
The first line of input is an integer T (T < 1000) that indicates the number of test cases. Each case contains 3 integers K, A and B. The meanings of these variables are mentioned above. K will be in the range [0, 30] and 1 ≤ A ≤ B ≤ 2 K.
Output
For each case, output the case number followed by the total number of red balloons in rows [A, B] after K-th hour.
Sample Input
삼
0 1 1
3 1 8
3 3 7
Sample Output
Case 1: 1
Case 2: 27
Case 3: 14
제목: 처음에는 빨간색 풍선이 하나 있는데 시간당 빨간색 풍선 하나가 빨간색 풍선 3개와 파란색 풍선 1개가 되고 파란색 풍선 하나가 파란색 풍선 4개가 된다. 그림에서 보듯이 3시간의 변화를 거친 후.
그림에서 제시한 풍선의 분열 방식에 따라 K차 분열 후 A행에서 B행까지의 빨간색 풍선의 수량을 구한다.
이렇게 생각하면 앞의 B줄의 빨간색 풍선 수량으로 A-1줄의 빨간색 공 수량을 빼면 A줄에서 B줄까지의 빨간색 풍선 수량을 얻을 수 있다.
그리고 세 번째 시간과 두 번째 시간의 그림을 관찰한 결과 두 번째 시간의 그림과 세 번째 그림이 네 조각으로 나누어진 후 그 중 세 조각은 같고 다른 한 조각은 모두 파란색이어서 계산할 필요가 없다.
가령 함수 f(k, i)가 k시간, 전 i행의 모든 붉은 공 개수를 나타낸다면 문제의 답은 f(k, B)-f(k, A-1)이다.f(k, i)의 구해는 i와 2의 (k-1) 차방의 크기에 따라 분류하여 토론하고 차례로 구해해야 한다.
#include<cstring>
#include<cstdio>
#include<iostream>
using namespace std;
int T,k,a,b;
long long c[35];
long long f(int k, int i)
{
if(!i) return 0;
if(!k) return 1;
if(i<1<<(k-1))
return 2*f(k-1,i);
else
return f(k-1,i-(1<<(k-1)))+2*c[k-1]; 1<<(k-1)=2 k-1
}
int main()
{
c[0]=1;
for(int i=1;i<30; i++)
c[i]=3*c[i-1];
cin>>T;
for(int s=1;s<=T; s++)
{
cin>>k>>a>>b;
long long total=f(k,b)-f(k,a-1);
printf("Case %d: %lld
",s,total);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.