toj3474 The Big Dance

题目链接:http://acm.tju.edu.cn/toj/showp3474.html

题目大意:见原题图示。

思路:(1)简单递归:这个容易;(2) DFS(待理解) 转自:http://www.cppblog.com/zhunki/archive/2010/07/30/121659.html

代码:

(1)递归:

#include<iostream>
using namespace std;

int a[2201],i;
int get(int x,int y)
{
    //cout<<x<<" "<<y<<endl;
    if(x+1==y)return a[x]*a[y];
    if(x==y) return 0;
    int tmp=(y+x)/2;
    return get(x,tmp)+get(tmp+1,y);
}

int main()
{
    int n;
    cin>>n;
    for(i=1;i<=n;i++)
    a[i]=i;
    cout<<get(1,n)<<endl;
    return 0;   
}

(2)DFS: 理解不够透彻!求指教

#include<iostream>
 using namespace std;
 int stack[2421100][3];
 int main(){
     int n;
     scanf("%d",&n);        
     int top=-1,sum=0;
     stack[++top][0]=1;
     stack[top][1]=n;
     stack[top][2]=2;//left:no,right:no
     while(top>=0){
         if(stack[top][1]-stack[top][0]==0){
             top--;
         }else if(stack[top][1]-stack[top][0]==1){
             sum+=stack[top][1]*stack[top][0];
             top--;
         }else if(stack[top][2]==0){
             top--;
         }else if(stack[top][2]==1){
             top++;
             stack[top][0]=(stack[top-1][0]+stack[top-1][1])/2+1;
             stack[top][1]=stack[top-1][1];
             stack[top-1][2]=0;
             stack[top][2]=2;
         }else{
             top++;
             stack[top][0]=stack[top-1][0];
             stack[top][1]=(stack[top-1][0]+stack[top-1][1])/2;
             stack[top-1][2]=1;
             stack[top][2]=2;
         }
     }
     printf("%d\n",sum);
     return 0;
 }



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值