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

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

            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ā)現偶還是太水了。。。

            #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 閱讀(1059) 評論(0)  編輯 收藏 引用

            久久精品国产亚洲AV久| 久久精品综合一区二区三区| 欧美一区二区久久精品| 99久久国产精品免费一区二区| 伊人久久综合成人网| 久久综合久久综合久久综合| 久久久人妻精品无码一区| 午夜天堂av天堂久久久| 国产精品久久久久久久久久免费| 免费精品国产日韩热久久| 青青草原综合久久大伊人精品| 偷窥少妇久久久久久久久| 国产精品久久久久9999| 久久成人小视频| 国产农村妇女毛片精品久久| 国产综合久久久久| 久久丫忘忧草产品| 久久综合九色综合欧美就去吻| 欧美va久久久噜噜噜久久| 99热都是精品久久久久久| 久久精品无码专区免费东京热| 欧美粉嫩小泬久久久久久久 | 久久人妻少妇嫩草AV无码蜜桃| 无码精品久久久久久人妻中字| 青青草国产97免久久费观看| 久久99国产精一区二区三区| 久久无码中文字幕东京热| 久久涩综合| 久久久国产精品| 久久久精品日本一区二区三区 | 岛国搬运www久久| 国产精品久久久久久福利漫画| 久久亚洲精精品中文字幕| 伊人久久大香线焦AV综合影院 | 97精品国产91久久久久久| 少妇人妻综合久久中文字幕| 一级做a爰片久久毛片毛片| 亚洲国产成人久久综合区| 国产一区二区久久久| 亚洲中文字幕无码久久综合网| 亚洲午夜久久久影院|