CodeFoeces-1004A

题目

原题链接:A. Sonya and Hotels

题意

在所给的n座房子周围建造间隔恰好为d的房子,问有多少选择。

代码

#include
using namespace std;
int main(){
    int n,d,s[100],t=2;
    cin>>n>>d;
    for(int i=0;i>s[i];
    }
    for(int i=0;i 2*d){
            t+=2;
        }else if((s[i+1]-s[i]) == 2*d){
            t++;
        } 
    }
    printf("%d\n",t);
    return 0;
}

你可能感兴趣的:(CodeFoeces-1004A)