[SCOI2005]扫雷MINE(思维+枚举+递推)

[SCOI2005]扫雷MINE

https://ac.nowcoder.com/acm/problem/20241

题目链接

题意:




题解:













AC代码

/*
    Author:zzugzx
    Lang:C++
    Blog:blog.csdn.net/qq_43756519
*/
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define endl '\n'
#define SZ(x) (int)x.size()
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int mod=1e9+7;
//const int mod=998244353;
const double eps = 1e-10;
const double pi=acos(-1.0);
const int maxn=1e6+10;
const ll inf=0x3f3f3f3f;
const int dir[][2]={{0,1},{1,0},{0,-1},{-1,0},{1,1},{1,-1},{-1,1},{-1,-1}};

int n;
int a[maxn],b[maxn];
bool ok(){
    for(int i=2;i<=n;i++){
        b[i]=a[i-1]-b[i-1]-b[i-2];
        if(b[i]>1||b[i]<0)return 0;
    }
    return a[n]==b[n]+b[n-1];
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);cout.tie(0);
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    int ans=0;
    cin>>n;
    for(int i=1;i<=n;i++)cin>>a[i];
    b[1]=1;
    if(ok())ans++;
    b[1]=0;
    if(ok())ans++;
    cout<<ans;
    return 0;
}

每日一题 文章被收录于专栏

每日一题

全部评论
递推式咋算出来的???
点赞 回复 分享
发布于 2022-10-28 22:18 四川

相关推荐

头顶尖尖的程序员:我是26届的不太懂,25届不应该是找的正式工作吗?为什么还在找实习?大四还实习的话是为了能转正的的岗位吗
点赞 评论 收藏
分享
评论
14
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务