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

SRM458

Posted on 2010-01-23 21:35 rikisand 閱讀(239) 評論(0)  編輯 收藏 引用

繼續補上srm的總結:

250pt

Problem Statement

Desertification (the process of good land turning into desert) is a severe problem on Bob's island. Bob's island is a rectangular grid of cells. You are given a vector <string> island that shows the current state of Bob's island. The j-th character of the i-th element of island is 'D' if cell in row i, column j of the grid is desert and is 'F' if this cell is forest.
The desert spreads each year as follows:

  • If a cell is desert, it remains desert forever.
  • If a cell is forest and it is adjacent to at least one desert cell (in one of the four orthogonal directions), it becomes desert after one year.
  • Otherwise the cell remains forest for another year.
Return the number of desert cells after T years.
Definition

Class:
Desertification

Method:
desertArea

Parameters:
vector <string>, int

Returns:
int

Method signature:
int desertArea(vector <string> island, int T)

(be sure your method is public)

Constraints

-
island will contain between 1 and 10 elements, inclusive.

-
Each element of island will contain between 1 and 10 characters, inclusive.

-
Each character in island will be 'D' or 'F'.

-
Each element of island will contain the same number of characters.

-
T will be between 1 and 1,000,000,000, inclusive.

 

記得當時寫了遍歷,如果一個是沙漠則把周圍的都設置為沙漠,這樣牽涉到一個問題,循環到某年時候遇到的可能是剛剛變成沙漠的,因此需要每次用一個Vector<string> 記錄新的。

其實對每一個來計算在其T距離內有沒有沙漠即可,復雜度 O(n^4)不過數據很小可以過

Code Snippet
int desertArea(vector <string>  land, int T)
{
         int r= land.size(); int c = land[0].size();
         int cnt=0;
         REP(i,r)REP(j,c)  {
             if(land[i][j] == 'D') {cnt++;continue;}
             bool tag=false;
             REP(x,r){
                 if(tag)break;
                 REP(y,c){
                 if(land[x][y]=='D'&&abs(x-i)+abs(y-j)<=T){
                    tag=true;break;
                 }
                 }
             }
             if(tag)cnt++;
         }
         return cnt;
}

500pt

Problem Statement

John is playing with balls. All of the balls are identical in weight and considered to have a zero radius. All balls are located on the same straight line and can move only along this line. If a ball rolling to the right and a ball rolling to the left at the same speed collide, they do not change speed, but they change direction.
You are given vector <int> x. x[i] is the initial position of the i-th ball. John decides the direction for each ball (right or left) with equal probability. At time 0, he rolls the balls in the chosen directions simultaneously at a speed of one unit per second. Return the expected number of bounces between all balls during T seconds (including those collisions that happen exactly at T seconds).

Definition

Class:
BouncingBalls

Method:
expectedBounces

Parameters:
vector <int>, int

Returns:
double

Method signature:
double expectedBounces(vector <int> x, int T)

(be sure your method is public)

Notes

-
There is no friction. Each ball continues rolling at the same speed forever.

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

Constraints

-
x will contain between 1 and 12 elements, inclusive.

-
Each element of x will be between 0 and 100,000,000, inclusive.

-
All elements of x will be distinct.

-
T will be between 1 and 100,000,000, inclusive.

Examples

蠻有意思的題,只需要注意到,兩個球碰撞后立即反向,而且速度不變,可以看做兩個球穿越····然后枚舉所有可能的方向2^n種可能即可~~

Code Snippet
class BouncingBalls
{
        public:
        double expectedBounces(vector <int> x, int T)
        {
            int n = x.size();int ans=0;
            sort(x.begin(),x.end());
            REP(i,(1<<n)){
                int mask=1;
                vector<int> vec(n);
                for(int k=0;k<n;k++,mask<<=1){
                    if(mask&i)vec[k] = x[k] + T;
                    else vec[k] = x[k] - T;
                }
                for(int a=0;a<n;a++)
                    for(int b=a+1;b<n;b++){
                        if(vec[a]>=vec[b])ans++;
                    }
            }
            return double(ans)/(1<<n);
        }

 

500分和250分的基本都會用到一些簡化的思想,化復雜為簡單,化特殊為一般~

1000pt

Problem Statement

You are given six integers, minx, maxx, miny, maxy, minz and maxz. Return the number of triplets of integers (x,y,z) that satisfy the following three conditions:

  • x is between minx and maxx, inclusive.
  • y is between miny and maxy, inclusive.
  • z is between minz and maxz, inclusive.
  • x * y = z
Definition

Class:
ProductTriplet

Method:
countTriplets

Parameters:
int, int, int, int, int, int

Returns:
long long

Method signature:
long long countTriplets(int minx, int maxx, int miny, int maxy, int minz, int maxz)

(be sure your method is public)

Constraints

-
maxx will be between 1 and 1,000,000,000, inclusive.

-
maxy will be between 1 and 1,000,000,000, inclusive.

-
maxz will be between 1 and 1,000,000,000, inclusive.

-
minx will be between 1 and maxx, inclusive.

-
miny will be between 1 and maxy, inclusive.

-
minz will be between 1 and maxz, inclusive.

 

貼一下tutorial中的解釋,挺明白:

The problem asks about the number of triplets of integers (x, y, z), such that
x1 ≤ x ≤ x2
y1 ≤ y ≤ y2
z1 ≤ z ≤ z2
and x * y = z

Let's look at a special case of the problem. Given a fixed x0. Calculate the number of integer triplets (x0, y, z), such that
y1 ≤ y ≤ y2
z1 ≤ z ≤ z2
and x0 * y = z

The conditions on z will derive the following conditions on y.
z1 ≤ x0 * y ≤ z2
z1/x0 ≤ y ≤ z2/x0
ceil(z1/x0) ≤ y ≤ floor(z2/x0)

Another condition on y is y1 ≤ y ≤ y2. So, max(y1, ceil(z1/x0)) ≤ y ≤ min(y2, floor(z2/x0)) are the only limiting conditions on y and z, because any value of y in this range will give a valid (x0, y, z) triplet.

The number of candidate values to y is: min(y2, floor(z2/x0))-max(y1, ceil(z1/x0))+1, provided that the result of the subtraction is not negative. i.e.: the interval is not empty.

 

然后按照這種思想很容易得到第一種方法:

Code Snippet
int64 cacl(int x,int miny,int maxy,int minz,int maxz){
     minz = max(minz,x*x+1);
     if(minz>maxz)return 0;
     miny = max(miny,(minz+x-1)/x);
     maxy = min(maxy,maxz/x);
     return max(0,maxy-miny+1);
}
class ProductTriplet
{
        public:
        long long countTriplets(int minx, int maxx, int miny, int maxy, int minz, int maxz)
        {
            int64 ans=0;
            for(int64 i=minx;i<=maxx && i*i<maxz ;i++)
                ans+=cacl(i,miny,maxy,minz,maxz);
            for(int64 i=miny;i<=maxy && i*i<maxz ;i++)
                ans+=cacl(i,minx,maxx,minz,maxz);
            for(int64 i=max(minx,miny);i<=min(maxx,maxy) && i*i<=maxz;i++)
                if(i*i>=minz)ans++;
            return ans;
        }

首先計算出x<sqrt(z) 然后y<sqrt(z) 最后x==y

注意cacl 中首先要更新minz至少為x*x+1保證x<y;

關鍵是想到x*y=z直接枚舉會超時,但是分別枚舉x,y 均在sqrt(z) 之內可以完成

其他的方法:

Code Snippet
int64 cacl2(int x1,int x2,int y1,int y2,int z1,int z2){
    int x=x1,y=y1;
    int64 ans=0;
    while(x<=x2 && y<=y2 && x*y<=z2){
        int low = (z1+x-1)/x ;
        int high = z2/x;
        low = max(y,low);
        high = min(y2,high);
        if(high>=low)ans+=(high-low+1);
        x++;
        if(high-low<100)
            swap(x,y),swap(x2,y2);
    }
    return ans;
}
int64 cacl(int x1,int x2,int y1,int y2,int z){
    if(z==0)return 0;
    int x=x1,y=y1;
    int64 ans=0;
    while(x<=x2 && y<=y2 && x*y<=z){
        if(x>y){
            swap(x2,y2);swap(x,y);
        }
        int k = z/x ;
        int low = max(1,y);
        int high = min(y2,k);
        if(high>=low)ans+=(high-low+1);
        x++;
    }
    return ans;
}  
class ProductTriplet
{
        public:
        long long countTriplets(int minx, int maxx, int miny, int maxy, int minz, int maxz)
        {
             int64 ans = cacl(minx,maxx,miny,maxy,maxz);
             return ans-cacl(minx,maxx,miny,maxy,minz-1);
            /*return cacl(minx,maxx,miny,maxy,minz,maxz2);*/
        }

 

一種使用cacl函數,計算1 ~maxz的可用對數,然后減去1~(minz-1)的可用對數即可

計算過程中,枚舉x的值,如果x>y則swap(x,y)其實也是保證枚舉次數不超過sqrt(z)

另一種方法使用cacl2函數直接計算結果,同樣枚舉x的值,不過在得到的y的值小于一定大小

->100 的時候交換x和y,這是基于此時枚舉y值可能更有效率而來的。

在計算ceil(x) 時候有點技巧 low = (z-1+x)/x;

 

 

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            国产日韩欧美在线看| 黑人极品videos精品欧美裸| 亚洲理伦在线| 亚洲精品国产精品国自产在线 | 在线一区欧美| 亚洲精品久久7777| 一本久久a久久免费精品不卡| 一区二区三区av| 亚洲永久免费观看| 欧美一级网站| 久久嫩草精品久久久久| 欧美a级一区| 欧美午夜视频在线| 狠狠综合久久| 一本色道久久综合亚洲二区三区| 亚洲一区二区毛片| 久久久久.com| 亚洲激情专区| 欧美亚洲视频在线观看| 欧美www在线| 国产精品欧美在线| 在线国产精品一区| 亚洲香蕉视频| 狂野欧美性猛交xxxx巴西| 最新热久久免费视频| 亚洲在线播放| 欧美成人精品一区二区| 国产精品国产三级国产aⅴ9色| 国产综合激情| 一区二区毛片| 麻豆亚洲精品| 亚洲午夜精品在线| 猛干欧美女孩| 国产亚洲精久久久久久| 99亚洲一区二区| 麻豆freexxxx性91精品| 一本色道久久88精品综合| 美女主播视频一区| 狠狠色丁香久久婷婷综合_中| av成人动漫| 欧美国产成人在线| 欧美在线不卡| 国产精品欧美久久| 夜夜嗨av一区二区三区网站四季av | 欧美精品七区| 在线观看视频免费一区二区三区| 亚洲无限乱码一二三四麻| 欧美成人一区二区三区片免费| 妖精成人www高清在线观看| 美国三级日本三级久久99| 国内成+人亚洲| 亚洲欧美国产不卡| 99香蕉国产精品偷在线观看| 欧美日韩一区三区四区| 亚洲国产精品ⅴa在线观看| 午夜视黄欧洲亚洲| 国产精品久久久久久久久搜平片| 亚洲欧洲一区二区天堂久久| 美女尤物久久精品| 久久国产一区二区三区| 亚洲性人人天天夜夜摸| 国产精品国产三级国产普通话99 | 亚洲美女中出| 欧美一二三区精品| 亚洲欧美999| 国产精品日产欧美久久久久| 亚洲专区一二三| 一区二区三区视频在线播放| 欧美色视频日本高清在线观看| 99精品欧美一区二区三区| 亚洲激情国产| 欧美色网一区二区| 午夜精品久久久久久久久久久久久 | 欧美精品日韩精品| 亚洲精品视频在线看| 亚洲精品一区二区三区蜜桃久 | 一道本一区二区| 欧美视频中文字幕在线| 欧美一进一出视频| 欧美淫片网站| 亚洲国产成人porn| 日韩视频免费在线观看| 国产精品国产馆在线真实露脸| 欧美一区二粉嫩精品国产一线天| 久久黄色级2电影| 最新日韩中文字幕| 99热在线精品观看| 国产有码在线一区二区视频| 欧美电影免费| 国产精品久久久一区麻豆最新章节 | 一区二区日韩伦理片| 国产精品一区二区在线观看| 毛片av中文字幕一区二区| 免费观看成人www动漫视频| 一区二区三区欧美亚洲| 午夜精品久久久久久久99黑人| 在线播放一区| 亚洲最新在线| 精品99一区二区| 国产欧美日韩综合精品二区| 亚洲欧美日韩中文播放| 国产片一区二区| 免费欧美视频| 欧美日韩精品一区二区三区| 亚洲国产综合视频在线观看| 国产欧美精品日韩精品| 午夜精品久久久久久久久| 亚洲一区二区视频| 亚洲国产mv| 亚洲专区免费| 亚洲日本黄色| 欧美一级日韩一级| 一区二区日韩| 麻豆freexxxx性91精品| 亚洲欧美综合精品久久成人 | 欧美亚洲日本国产| 一区二区冒白浆视频| 久久综合成人精品亚洲另类欧美| 国产精品99久久久久久人| 久久综合网hezyo| 欧美在线首页| 欧美午夜三级| 一区二区免费看| 99精品99久久久久久宅男| 久久亚洲国产精品一区二区| 亚洲欧美日本视频在线观看| 在线视频日韩| 中文高清一区| 欧美精品一区二区三区视频| 亚洲午夜av电影| 老司机午夜精品视频| 亚洲另类自拍| 亚洲日韩欧美视频一区| 老司机精品视频网站| 另类成人小视频在线| 国产色爱av资源综合区| 亚洲一级网站| 亚洲一级一区| 国产精品久久久| 中文高清一区| 欧美一级网站| 国产精品一区一区| 午夜精品久久久99热福利| 久久激情一区| 一色屋精品视频在线观看网站| 久久久久久久高潮| 免费观看亚洲视频大全| 亚洲高清毛片| 欧美另类在线观看| 一本大道久久精品懂色aⅴ| 亚洲欧美韩国| 国产精品中文字幕欧美| 欧美在线视频一区二区| 米奇777超碰欧美日韩亚洲| 亚洲电影网站| 欧美日韩精品欧美日韩精品| 亚洲视频在线免费观看| 久久久亚洲影院你懂的| 国产视频精品免费播放| 久久影视精品| 国产精品久久久久久妇女6080| 一区二区亚洲| 一本久久精品一区二区| 欧美日韩在线免费观看| 国产主播一区二区| 亚洲性夜色噜噜噜7777| 久久精品国产亚洲高清剧情介绍| 亚洲精品黄网在线观看| 久久九九免费视频| 欧美激情亚洲自拍| 午夜免费电影一区在线观看| 亚洲国产小视频在线观看| 另类综合日韩欧美亚洲| 黄色亚洲大片免费在线观看| 久久久xxx| 久久成人资源| 国产精品美女主播| 久久精品人人爽| 欧美午夜激情视频| 久久五月激情| 久久综合狠狠综合久久综青草| 亚洲美女91| 久久亚洲春色中文字幕久久久 | 久久精品av麻豆的观看方式| 欧美亚洲在线| 亚洲免费在线播放| 免费不卡亚洲欧美| 一区二区三区成人精品| 美脚丝袜一区二区三区在线观看| 亚洲精品综合在线| 亚洲免费一在线| 国产美女精品一区二区三区| 欧美日韩高清区| 欧美紧缚bdsm在线视频| 免费在线欧美视频| 免费91麻豆精品国产自产在线观看| 久久久噜噜噜久久人人看| 欧美一区二区三区日韩| 欧美一区二区视频97| 久久久国产精品亚洲一区|