• Danganronpa


    Problem Description
    Chisa Yukizome works as a teacher in the school. She prepares many gifts, which consist of n kinds with a[i] quantities of each kind, for her students and wants to hold a class meeting. Because of the busy work, she gives her gifts to the monitor, Chiaki Nanami. Due to the strange design of the school, the students' desks are in a row. Chiaki Nanami wants to arrange gifts like this:

    1. Each table will be prepared for a mysterious gift and an ordinary gift.

    2. In order to reflect the Chisa Yukizome's generosity, the kinds of the ordinary gift on the adjacent table must be different.

    3. There are no limits for the mysterious gift.

    4. The gift must be placed continuously.

    She wants to know how many students can get gifts in accordance with her idea at most (Suppose the number of students are infinite). As the most important people of her, you are easy to solve it, aren't you?
     
    Input
    The first line of input contains an integer T(T10) indicating the number of test cases.

    Each case contains one integer n. The next line contains n (1n10) numbers: a1,a2,...,an(1ai100000).
     
    Output
    For each test case, output one line containing “Case #x: y” (without quotes) , where x is the test case number (starting from 1) and y is the answer of Chiaki Nanami's question.
     
    Sample Input
    1
    2
    3 2
     
    Sample Output
    Case #1: 2
     
    Author
    UESTC
     
    Source

     一道水题,,写了半天没写出来。。。。。

    #include <cstring>
    #include <cstdio>
    #include <iostream>
    #include <algorithm>
    #include <cmath>
    #include <stack>
    #include <vector>
    #include <queue>
    #include <cmath>
    using namespace std;
    #define N 105000
    typedef long long LL;
    int a[N],b[N];
    int len;
    struct point
    {
        int x,y;
    } p[N];
    int main()
    {
    
        int t;
        char str[N];
        scanf("%d", &t);
        int n;
        int s = 1;
        while(t--)
        {
            scanf("%d",&n);
    
            int sum = 0;
    
            int Max = -1;
            for(int i=0; i<n; i++)
            {
                scanf("%d",&a[i]);
                sum += a[i];
    
            }
    
            if(sum == 1)
                printf("Case #%d: 1
    ",s++);
            else
                printf("Case #%d: %d
    ",s++,sum/2);
        }
        return 0;
    }
  • 相关阅读:
    Team饭来了团队作业3需求改进与系统设计
    2016012006崔啸寒 散列函数的应用及其安全性
    结对项目之四则运算
    《构建之法》第四章,第十七章所感
    2016012006小学四则运算练习软件项目报告
    读《构建之法》之一,二,十六章有感
    追梦软件路,愿不忘初心
    信息安全作业5 有关散列函数安全性的知识扩展
    结对作业:四则运算网页版
    Week4-作业1:阅读笔记与思考
  • 原文地址:https://www.cnblogs.com/biu-biu-biu-/p/5771802.html
Copyright © 2020-2023  润新知