• <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>

            The Fourth Dimension Space

            枯葉北風(fēng)寒,忽然年以殘,念往昔,語默心酸。二十光陰無一物,韶光賤,寐難安; 不畏形影單,道途阻且慢,哪曲折,如渡飛湍。斬浪劈波酬壯志,同把酒,共言歡! -如夢令

            Topcoder 463 Div 2 1000

            Problem Statement

                 Taro and Hanako are playing a game called Nisoku, which is played as follows. Initially, there is a pile of cards. Each card contains a real number between 1.5 and 10.0, inclusive. You are given a vector <double> cards, the i-th element of which is the number written on the i-th card.

            Repeat the following step until there is only one card left in the pile: Remove any two cards from the pile, and add one new card to the pile. Write either a+b or a*b on the new card, where a and b are the numbers written on the two cards that were removed.

            Return the maximal possible number written on the final card in the pile.

            Definition

                
            Class: Nisoku
            Method: theMax
            Parameters: vector <double>
            Returns: double
            Method signature: double theMax(vector <double> cards)
            (be sure your method is public)
                

            Notes

            - Your return value must have an absolute or relative error less than 1e-9.

            Constraints

            - cards will contain between 2 and 50 elements, inclusive.
            - Each element of cards will be between 1.5 and 10.0, inclusive.

            Examples

            0)
                
            {5, 8}
            Returns: 40.0
            5 * 8 = 40.
            1)
                
            {1.5, 1.8}
            Returns: 3.3
            1.5 + 1.8 = 3.3.
            2)
                
            {8.26, 7.54, 3.2567}
            Returns: 202.82857868
            3)
                
            {1.5, 1.7, 1.6, 1.5}
            Returns: 9.920000000000002
            4)
                
            {10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
                                                10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
                                                10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
                                                10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
                                                10, 10, 10, 10, 10, 10, 10, 10, 10, 10}
            Returns: 1.0E50
            The answer can be extremely big.




            發(fā)現(xiàn)偶還是太水了。。。

            #include<iostream>
            #include
            <algorithm>
            #include
            <vector>
            using namespace std;



            class Nisoku
            {
            public:
                
            double theMax(vector<double>cards)
                
            {    
                    
            int i,j;
                    sort(cards.begin(),cards.end());
                    
            double ans=0;
                    
            for(i=0;i<=cards.size();i+=2)
                    
            {
                        
            double p=1;
                        
            for(j=0;j<i/2;j++)
                            p
            *=(cards[j]+cards[i-1-j]);
                        
            for(j=i;j<cards.size();j++)
                            p
            *=cards[j];
                        ans
            =max(ans,p);
                    }

                    
            return ans;
                }

            }
            ;

            誰能證明下這份代碼的正確性?

            posted on 2010-03-02 22:27 abilitytao 閱讀(1061) 評論(0)  編輯 收藏 引用


            只有注冊用戶登錄后才能發(fā)表評論。
            網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


            一本一本久久a久久精品综合麻豆| 91超碰碰碰碰久久久久久综合| 一极黄色视频久久网站| 久久性精品| av午夜福利一片免费看久久| 久久黄色视频| 99精品国产在热久久无毒不卡 | 日韩精品久久无码人妻中文字幕| 亚洲精品无码久久久久去q | 99久久国产综合精品成人影院| 激情综合色综合久久综合| 久久中文字幕精品| 99久久国产亚洲高清观看2024| 久久久久久伊人高潮影院| 久久国产乱子伦精品免费强 | 久久久无码一区二区三区| 国产成人久久精品麻豆一区 | 亚洲另类欧美综合久久图片区| 日韩av无码久久精品免费| 久久五月精品中文字幕| 99久久精品国产一区二区三区| 伊人久久大香线蕉av不卡| 久久影视国产亚洲| 国产福利电影一区二区三区久久久久成人精品综合| 久久se精品一区精品二区国产| 精品久久久噜噜噜久久久| 亚洲国产一成人久久精品| 人人妻久久人人澡人人爽人人精品| 国产免费久久久久久无码| 精品久久香蕉国产线看观看亚洲| 亚洲午夜久久久影院伊人| 久久精品国产亚洲AV香蕉| 成人综合久久精品色婷婷| 久久亚洲国产成人精品无码区| 精品视频久久久久| 狠狠色丁香婷婷综合久久来来去| 亚洲国产精品久久久久| 久久av免费天堂小草播放| 欧美久久一区二区三区| 午夜精品久久久久成人| 精品国产99久久久久久麻豆|