青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

ACM___________________________

______________白白の屋
posts - 182, comments - 102, trackbacks - 0, articles - 0
<2025年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

常用鏈接

留言簿(24)

隨筆分類(332)

隨筆檔案(182)

FRIENDS

搜索

積分與排名

最新隨筆

最新評(píng)論

閱讀排行榜

評(píng)論排行榜

MiYu原創(chuàng), 轉(zhuǎn)帖請(qǐng)注明 : 轉(zhuǎn)載自 ______________白白の屋    

題目地址 :

http://acm.hdu.edu.cn/showproblem.php?pid=3016

題目描述:

Man Down

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 618    Accepted Submission(s): 197


Problem Description
The Game “Man Down 100 floors” is an famous and interesting game.You can enjoy the game from 
http://hi.baidu.com/abcdxyzk/blog/item/16398781b4f2a5d1bd3e1eed.html

We take a simplified version of this game. We have only two kinds of planks. One kind of the planks contains food and the other one contains nails. And if the man falls on the plank which contains food his energy will increase but if he falls on the plank which contains nails his energy will decrease. The man can only fall down vertically .We assume that the energy he can increase is unlimited and no borders exist on the left and the right.

First the man has total energy 100 and stands on the topmost plank of all. Then he can choose to go left or right to fall down. If he falls down from the position (Xi,Yi),he will fall onto the nearest plank which satisfies (xl <= xi <= xr)(xl is the leftmost position of the plank and xr is the rightmost).If no planks satisfies that, the man will fall onto the floor and he finishes his mission. But if the man’s energy is below or equal to 0 , he will die and the game is Over.

Now give you the height and position of all planks. And ask you whether the man can falls onto the floor successfully. If he can, try to calculate the maximum energy he can own when he is on the floor.(Assuming that the floor is infinite and its height is 0,and all the planks are located at different height).
 

Input
There are multiple test cases.

For each test case, The first line contains one integer N (2 <= N <= 100,000) representing the number of planks.

Then following N lines representing N planks, each line contain 4 integers (h,xl,xr,value)(h > 0, 0 < xl < xr < 100,000, -1000 <= value <= 1000), h represents the plank’s height, xl is the leftmost position of the plank and xr is the rightmost position. Value represents the energy the man will increase by( if value > 0) or decrease by( if value < 0) when he falls onto this plank.
 

Output
If the man can falls onto the floor successfully just output the maximum energy he can own when he is on the floor. But if the man can not fall down onto the floor anyway ,just output “-1”(not including the quote)
 

Sample Input
4 10 5 10 10 5 3 6 -100 4 7 11 20 2 2 1000 10
 

Sample Output
140
 

 /*

  題目描述:  

          不同高度處有不同的水平板,跳到該板會(huì)有血量變化v,

          問當(dāng)一個(gè)人從最高板開始,可以向左或者向右,

          豎直跳到下面的板,求下落到地面的最大血量,或者-1。

          線段樹+dp  

          需要用線段樹查詢得到每個(gè)板的兩個(gè)端點(diǎn)下落后會(huì)到哪個(gè)板;

          然后根據(jù)這個(gè)從最高的開始dp就可以了

          dp[i] = max ( dp[i], dp[i^].v )  // dp[i^] 代表能走到 i 的線段 

/* 


/*

Mail to   : miyubai@gamil.com

Link      : http://www.cnblogs.com/MiYu  || http://www.shnenglu.com/MiYu

Author By : MiYu

Test      : 1

Complier  : g++ mingw32-3.4.2

Program   : HDU_3016

Doc Name  : Man Down

*/

//#pragma warning( disable:4789 )

#include <iostream>

#include <fstream>

#include <sstream>

#include <algorithm>

#include <string>

#include <set>

#include <map>

#include <utility>

#include <queue>

#include <stack>

#include <list>

#include <vector>

#include <cstdio>

#include <cstdlib>

#include <cstring>

#include <cmath>

#include <ctime>

using namespace std;

struct seg_tree {

    int id, left, right;

    int mid () { return ( left + right )>>1; }  

}seg[333333];

inline void creat ( int x, int y, int rt = 1 ) {

     seg[rt].left = x;

     seg[rt].right = y;

     //0 代表地面 其他的自然數(shù)代表各層的木板編號(hào)  -1 代表有多條線段覆蓋 

     seg[rt].id = 0;                  

     if ( x == y ) return ;

     int mid = seg[rt].mid();

     creat ( x, mid, rt << 1 );

     creat ( mid + 1, y, rt << 1 | 1 );     

}

inline void modify ( int x, int y, int id, int rt = 1 ) {

     //找到了線段, 直接修改ID 覆蓋掉 

     if ( seg[rt].left == x && seg[rt].right == y ) {

         seg[rt].id = id;

         return;   

     }

     int LL = rt << 1, RR = rt << 1 | 1, mid = seg[rt].mid();

     // 前面沒有return掉, 那么這條線段肯定是被覆蓋的, 將它的標(biāo)記下傳后標(biāo)記為-1 

     if ( seg[rt].id != -1 ) {      

         seg[LL].id = seg[RR].id = seg[rt].id;          

         seg[rt].id = -1;

     }      

     if ( y <= mid ) modify ( x, y, id, LL ); //分段修改 

     else if ( x > mid ) modify ( x, y, id, RR );

     else {

          modify ( x, mid, id, LL );

          modify ( mid + 1, y, id, RR );     

     }

}

inline int query ( int pos, int rt = 1 ) {   // 查詢 Pos 所在線段的 id  

    if ( seg[rt].id != -1 ) return seg[rt].id; //線段被覆蓋 直接返回 ID 

    int LL = rt << 1, RR = rt << 1 | 1, mid = seg[rt].mid();

    if ( pos <= mid ) return query ( pos, LL );             //分段查詢 

    else return query ( pos, RR );    

}

inline bool scan_d(int &num)  //整數(shù)輸入

{

        char in;bool IsN=false;

        in=getchar();

        if(in==EOF) return false;

        while(in!='-'&&(in<'0'||in>'9')) in=getchar();

        if(in=='-'){ IsN=true;num=0;}

        else num=in-'0';

        while(in=getchar(),in>='0'&&in<='9'){

                num*=10,num+=in-'0';

        }

        if(IsN) num=-num;

        return true;

}

struct Plank {

       int x,y,h,v,left,right; 

       //按高排序       

       friend bool operator < ( const Plank &a, const Plank &b ) {

              return a.h < b.h;

       }

}pk[100010];

int dp[100010];

int main ()

{

    int N, M;

    creat ( 1, 100000 );

    while ( scan_d ( N ) ) {

           M = -1;

           for ( int i = 1; i <= N; ++ i ) {

                scan_d ( pk[i].h );scan_d ( pk[i].x );scan_d ( pk[i].y );scan_d ( pk[i].v );

                if ( pk[i].y > M ) M = pk[i].y;       // 記錄 區(qū)間最大值, 加速用的 

           }

           modify  ( 1, M, 0 );

           sort ( pk + 1, pk + N + 1 );               // 按高排序 

           memset ( dp, 0, sizeof ( dp ) );

           dp[N] = 100 + pk[N].v;

           // 自底向上 更新 線段, 記錄 每條線段 左右端點(diǎn)能到達(dá)的 線段 ID 

           for ( int i = 1; i <= N; ++ i ) {          

                int x = pk[i].left = query ( pk[i].x );

                int y = pk[i].right = query ( pk[i].y );

                modify ( pk[i].x, pk[i].y, i );

           }

           int res = -1;

           //自頂向下 DP    dp[i] = max ( dp[i], dp[i^].v )  

           // dp[i^] 代表能走到 i 的線段 

           for ( int i = N; i >= 1; -- i ) {   

               if ( dp[ pk[i].left ] < dp[i] + pk[ pk[i].left ].v )

                    dp[ pk[i].left ] = dp[i] + pk[ pk[i].left ].v;

               if ( dp[ pk[i].right ] < dp[i] + pk[ pk[i].right ].v )

                    dp[ pk[i].right ] = dp[i] + pk[ pk[i].right ].v; 

           } 

           printf ( "%d\n",dp[0] > 0 ? dp[0] : -1 );

    }

    return 0;

}


 

 

Feedback

# re: HDU 3016 HDOJ 3016 Memory Control ACM 3016 IN HDU  回復(fù)  更多評(píng)論   

2010-10-18 19:21 by の屋
Google前n個(gè)搜索結(jié)果都和你的相關(guān)

# re: HDU 3016 HDOJ 3016 Man Down ACM 3016 IN HDU  回復(fù)  更多評(píng)論   

2010-10-30 07:51 by MiYu
表明哥 有 成 牛 的資質(zhì) =. = 嘿嘿

# re: HDU 3016 HDOJ 3016 Man Down ACM 3016 IN HDU  回復(fù)  更多評(píng)論   

2013-07-13 21:50 by fegnchen
pascal 版的有嗎??
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久一综合视频| 国产日韩欧美二区| 91久久精品国产91久久性色| 曰韩精品一区二区| 美日韩在线观看| 亚洲免费成人| 亚洲欧美三级在线| 国产自产在线视频一区| 久久这里只精品最新地址| 欧美激情第五页| 亚洲深夜福利| 国产午夜精品视频| 免费观看成人鲁鲁鲁鲁鲁视频| 欧美韩国在线| 亚洲影音一区| 狠狠干成人综合网| 欧美成人免费网| 一区二区三区偷拍| 狂野欧美激情性xxxx欧美| 亚洲另类自拍| 国产精品一区免费视频| 久久手机免费观看| 99在线|亚洲一区二区| 久久精品国产清自在天天线| 亚洲国产三级| 国产精品人成在线观看免费| 久久亚洲图片| 亚洲视频在线播放| 欧美成人在线免费观看| 亚洲欧美一区二区三区在线| 影音先锋亚洲精品| 国产精品久久久久久久9999| 久久久91精品国产一区二区三区| 亚洲人成人99网站| 久久一二三四| 亚洲中午字幕| 亚洲人线精品午夜| 狠狠色综合网| 国产精品久在线观看| 男女激情视频一区| 性18欧美另类| 在线视频你懂得一区| 欧美韩国在线| 久久琪琪电影院| 午夜精品婷婷| 在线视频欧美日韩| 亚洲二区在线观看| 国产亚洲精品bt天堂精选| 欧美日韩中文| 欧美精品日韩精品| 狼狼综合久久久久综合网 | 亚洲精品色图| 国内精品久久久久久久97牛牛| 欧美女人交a| 蜜桃av一区二区| 久久激情中文| 羞羞色国产精品| 亚洲视频免费| 99re8这里有精品热视频免费| 欧美韩国日本综合| 久久亚洲一区二区| 久久久久久久久久看片| 欧美在线免费一级片| 亚洲制服丝袜在线| 亚洲在线成人| 亚洲免费影院| 亚洲已满18点击进入久久| 一本一道久久综合狠狠老精东影业| 亚洲国产一区在线| 亚洲国产精品久久久久婷婷884 | 久久成人精品无人区| 亚洲影院免费观看| 亚洲视频在线播放| 亚洲天堂av在线免费| 9色porny自拍视频一区二区| 亚洲精品资源美女情侣酒店| 亚洲激情一区二区| 91久久在线视频| 最新国产の精品合集bt伙计| 亚洲人www| av成人手机在线| 99亚洲视频| 亚洲欧美日韩精品久久久久| 午夜精品福利在线| 久久国产天堂福利天堂| 久久久亚洲国产天美传媒修理工| 久久午夜电影| 欧美精品1区| 欧美午夜精品久久久久久久| 欧美日韩一区二区三区视频| 欧美午夜精品久久久| 国产精品视频专区| 黑人巨大精品欧美黑白配亚洲 | 欧美成人一区二区在线 | 欧美看片网站| 欧美日韩午夜剧场| 国产精品毛片a∨一区二区三区|国 | 亚洲无限乱码一二三四麻| 在线视频你懂得一区二区三区| 亚洲一级在线| 久久国产精品99久久久久久老狼| 久久综合狠狠综合久久综青草| 欧美大学生性色视频| 国产精品v日韩精品| 国产人成精品一区二区三| 国产综合自拍| 亚洲美女在线观看| 亚洲一区二区在线免费观看| 午夜精品在线| 美女福利精品视频| 亚洲国产黄色| 亚洲欧美激情视频| 老司机精品导航| 国产精品高潮呻吟| 精品成人在线视频| 在线综合欧美| 久久久欧美精品sm网站| 欧美激情一区二区久久久| 一本色道久久综合亚洲精品高清 | 久久琪琪电影院| 欧美日韩免费观看一区=区三区| 国产精品免费区二区三区观看| 在线精品视频在线观看高清| 夜夜精品视频| 老司机免费视频久久| 亚洲精品日本| 久久久精品久久久久| 欧美四级在线观看| 1769国产精品| 欧美一二三区精品| 亚洲欧洲日本专区| 久久精品免费电影| 国产精品久久久久免费a∨ | 久久久久久久综合| 亚洲精品欧美极品| 久久亚洲精品网站| 国产精品一区二区a| 亚洲精品中文字幕在线观看| 久久视频在线免费观看| 一区二区精品国产| 欧美激情精品久久久久久| 国产一区二区三区四区老人| 亚洲视频精选| 欧美黑人国产人伦爽爽爽| 欧美一区二区三区视频在线 | 久久国产精品久久久久久电车| 亚洲三级影院| 美女啪啪无遮挡免费久久网站| 国产一区二区三区黄| 亚洲网站视频| 亚洲品质自拍| 老司机午夜精品| 国内精品视频一区| 午夜在线一区| 亚洲天堂男人| 欧美视频在线观看免费网址| 亚洲人成毛片在线播放女女| 麻豆久久久9性大片| 久久激情久久| 黑人巨大精品欧美黑白配亚洲| 久久av一区二区三区漫画| 亚洲午夜黄色| 国产精品国产三级国产普通话蜜臀| 99av国产精品欲麻豆| 亚洲国产精品久久久久秋霞蜜臀 | 欧美视频专区一二在线观看| 亚洲精品乱码久久久久久蜜桃麻豆 | 亚洲高清不卡| 欧美国产在线电影| 亚洲人成毛片在线播放| 亚洲国产精品激情在线观看| 欧美国产激情| av成人老司机| 亚洲毛片网站| 国产精品成人在线观看| 亚洲在线一区二区三区| 亚洲一区二区三区色| 国产麻豆综合| 蜜桃av一区二区三区| 久久综合中文色婷婷| 亚洲伦伦在线| 亚洲无限av看| 韩日精品视频一区| 欧美成人精品| 欧美体内谢she精2性欧美 | 99国产精品视频免费观看| 国产精品激情电影| 久久福利资源站| 久久精品国产亚洲高清剧情介绍| 一色屋精品视频免费看| 欧美高清成人| 欧美日韩亚洲高清一区二区| 亚洲欧美成人一区二区三区| 久久aⅴ国产欧美74aaa| 亚洲国产另类久久精品| 亚洲理论在线观看| 国产私拍一区| 亚洲国产国产亚洲一二三| 国产精品99免费看| 蜜臀va亚洲va欧美va天堂 |