• BZOJ1802: [Ahoi2009]checker(性质分析 dp)


    题意

    题目链接

    Sol

    一个不太容易发现但是又很显然的性质:

    如果有两个相邻的红格子,那么第一问答案为0, 第二问可以推

    否则第一问答案为偶数格子上的白格子数,第二问答案为偶数格子上的红格子数

    #include<bits/stdc++.h> 
    #define Pair pair<int, int>
    #define MP(x, y) make_pair(x, y)
    #define fi first
    #define se second
    //#define int long long 
    #define LL long long 
    #define Fin(x) {freopen(#x".in","r",stdin);}
    #define Fout(x) {freopen(#x".out","w",stdout);}
    using namespace std;
    const int MAXN = 1001, mod = 1e9 + 7, INF = 1e9 + 10;
    const double eps = 1e-9;
    template <typename A, typename B> inline bool chmin(A &a, B b){if(a > b) {a = b; return 1;} return 0;}
    template <typename A, typename B> inline bool chmax(A &a, B b){if(a < b) {a = b; return 1;} return 0;}
    template <typename A, typename B> inline LL add(A x, B y) {if(x + y < 0) return x + y + mod; return x + y >= mod ? x + y - mod : x + y;}
    template <typename A, typename B> inline void add2(A &x, B y) {if(x + y < 0) x = x + y + mod; else x = (x + y >= mod ? x + y - mod : x + y);}
    template <typename A, typename B> inline LL mul(A x, B y) {return 1ll * x * y % mod;}
    template <typename A, typename B> inline void mul2(A &x, B y) {x = (1ll * x * y % mod + mod) % mod;}
    template <typename A> inline void debug(A a){cout << a << '
    ';}
    template <typename A> inline LL sqr(A x){return 1ll * x * x;}
    inline int read() {
        char c = getchar(); int x = 0, f = 1;
        while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
        while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
        return x * f;
    }
    int N, a[MAXN];
    LL f[MAXN];
    signed main() {
    	N = read();
    	int ans[2] = {0, 0}, flag = 0;
    	memset(f, 0x3f, sizeof(f));
    	for(int i = 1; i <= N; i++) {
    		a[i] = read();
    		if(i > 2 && a[i] && a[i] == a[i - 1]) flag = 1;
    		if((!(i & 1))) ans[a[i]]++;
    		if(a[i]) f[i] = 1;
    	}
    	if(!flag) {printf("%d
    %d", ans[0], ans[1]); return 0;}
    	for(int i = 2; i < N; i++) {
    		if(a[i] && a[i + 1]) {
    			for(int j = i - 1; j > 1; j--) chmin(f[j], f[j + 1] + f[j + 2]);
    			for(int j = i + 2; j < N; j++) chmin(f[j], f[j - 1] + f[j - 2]);
    		}
    	}
    	LL out = 0;
    	for(int i = 2; i < N; i += 2) out += f[i];
    	cout << 0 << "
    " << out;
    	return 0;
    }
    /*
    5
    
    0 0 1 1 0
    */
    
  • 相关阅读:
    sqlserver和Oracle内部的错误数据修复(DBCC、DBMS_REPAIR)
    通过Oracle补充日志,找到锁阻塞源头的SQL
    禁用sqlserver的锁升级
    [转]SQLServer2008日志文件无法收缩处理方法
    Oracle警告、跟踪文件(10046、死锁等跟踪)
    dbms_stats包更新、导出、导入、锁定统计信息
    BulkCopy频繁执行产生的性能问题
    Oracle表空间不足
    组合索引字段顺序引发的死锁问题
    如何清除某条SQL的执行计划
  • 原文地址:https://www.cnblogs.com/zwfymqz/p/10321697.html
Copyright © 2020-2023  润新知