u699The Falling Leaves
출력: 7 11 3
이 문제의 입력은 두 갈래 나무에 따라 만들어져 차례로 입력되는 것을 주의해라.
그래서 입력할 때 직접 수조에 따라 1차원 평면에 두 갈래 나무를 시뮬레이션할 수 있다.
#include <fstream>
#include <iostream>
#include <string>
#include <cstring>
#include <complex>
#include <math.h>
#include <set>
#include <vector>
#include <map>
#include <queue>
#include <stdio.h>
#include <stack>
#include <algorithm>
#include <list>
#include <ctime>
#include <ctime>
#include <assert.h>
#define rep(i,a,n) for (int i=a;i<n;i++)
#define per(i,a,n) for (int i=n-1;i>=a;i--)
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define eps 1e-8
#define M_PI 3.141592653589793
typedef long long ll;
const ll mod=1000000007;
const int inf=0x7fffffff;
ll powmod(ll a,ll b) {ll res=1;a%=mod;for(;b;b>>=1){if(b&1)res=res*a%mod;a=a*a%mod;}return res;}
using namespace std;
const int maxn=1010;
int sum[maxn];
void bulid(int pos)
{
int v;cin>>v;
if(v==-1) return;
sum[pos]+=v;
bulid(pos-1);bulid(pos+1);
}
bool init()
{
int v;cin>>v;
if(v==-1) return false;
memset(sum,0,sizeof(sum));
int pos=maxn/2;
sum[pos]=v;
bulid(pos-1);bulid(pos+1);
return true;
}
int main()
{
int ok,t=0,o=0;
ios::sync_with_stdio(false);
while(init()){
printf("Case %d:
",++t);
ok=1;
for(int i=0;i<maxn;i++){
if(sum[i]>0) {
if(ok) ok=0;
else printf(" ");
printf("%d",sum[i]);
}
}
printf("
");
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.