zoukankan      html  css  js  c++  java
  • F-Dining Cows(POJ 3671)

    Dining Cows
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 7584   Accepted: 3201

    Description

    The cows are so very silly about their dinner partners. They have organized themselves into two groups (conveniently numbered 1 and 2) that insist upon dining together in order, with group 1 at the beginning of the line and group 2 at the end. The trouble starts when they line up at the barn to enter the feeding area.

    Each cow i carries with her a small card upon which is engraved Di (1 ≤ Di ≤ 2) indicating her dining group membership. The entire set of N (1 ≤ N ≤ 30,000) cows has lined up for dinner but it's easy for anyone to see that they are not grouped by their dinner-partner cards.

    FJ's job is not so difficult. He just walks down the line of cows changing their dinner partner assignment by marking out the old number and writing in a new one. By doing so, he creates groups of cows like 112222 or 111122 where the cows' dining groups are sorted in ascending order by their dinner cards. Rarely he might change cards so that only one group of cows is left (e.g., 1111 or 222).

    FJ is just as lazy as the next fellow. He's curious: what is the absolute minimum number of cards he must change to create a proper grouping of dining partners? He must only change card numbers and must not rearrange the cows standing in line.

    Input

    * Line 1: A single integer: N
    * Lines 2..N+1: Line i+1 describes cow i's dining preference with a single integer: Di

    Output

    * Line 1: A single integer that is the minimum number of cards Farmer John must change to assign the cows to eating groups as described.

    Sample Input

    7
    2
    1
    1
    1
    2
    2
    1
    

    Sample Output

    2
    

    Source

     

    简单dp

    比赛没做粗来,大概是脑抽了,恩,比赛就是容易脑抽,啥时候才能正常啊。。。

    #include <cstdio>
    #include <iostream>
    #include <sstream>
    #include <cmath>
    #include <cstring>
    #include <cstdlib>
    #include <string>
    #include <vector>
    #include <map>
    #include <set>
    #include <queue>
    #include <stack>
    #include <algorithm>
    using namespace std;
    #define ll long long
    #define _cle(m, a) memset(m, a, sizeof(m))
    #define repu(i, a, b) for(int i = a; i < b; i++)
    #define MAXN 30005
    
    int d[MAXN][3] = {0};
    int cow[MAXN];
    int main()
    {
        int n;
        scanf("%d", &n);
        repu(i, 1, n + 1) scanf("%d", &cow[i]);
        d[1][1] = d[1][2] = 1;
        d[1][cow[1]] = 0;
        repu(i, 2, n + 1)
          if(cow[i] == 1) {
            d[i][1] = d[i - 1][1];
            d[i][2] = min(d[i - 1][1], d[i - 1][2]) + 1;
          }
          else {
            d[i][2] = min(d[i - 1][1], d[i - 1][2]);
            d[i][1] = d[i - 1][1] + 1;
          }
        printf("%d
    ", min(d[n][1], d[n][2]));
        return 0;
    }
    View Code
  • 相关阅读:
    Http请求处理整个过程
    C#文件下载方法
    EF链接ORACLE
    js复制功能的有效方法总结新
    js复制功能的有效方法总结
    pre即可保持原来样式也可以换行
    读取url后参数方法
    同名窗口不能重新打开
    2020/06/19 mysql 表分组查询 表约束 主键 外键 外键约束
    2020/06/17 mysql 表内容的增删改查
  • 原文地址:https://www.cnblogs.com/sunus/p/4480432.html
Copyright © 2011-2022 走看看