zoukankan      html  css  js  c++  java
  • codeforces_1040_A Python练习

    codeforces1040A Palindrome Dance

    A group of nn dancers rehearses a performance for the closing ceremony. The dancers are arranged in a row, they've studied their dancing moves and can't change positions. For some of them, a white dancing suit is already bought, for some of them — a black one, and for the rest the suit will be bought in the future.

    On the day when the suits were to be bought, the director was told that the participants of the olympiad will be happy if the colors of the suits on the scene will form a palindrome. A palindrome is a sequence that is the same when read from left to right and when read from right to left. The director liked the idea, and she wants to buy suits so that the color of the leftmost dancer's suit is the same as the color of the rightmost dancer's suit, the 2nd left is the same as 2nd right, and so on.

    The director knows how many burls it costs to buy a white suit, and how many burls to buy a black suit. You need to find out whether it is possible to buy suits to form a palindrome, and if it's possible, what's the minimal cost of doing so. Remember that dancers can not change positions, and due to bureaucratic reasons it is not allowed to buy new suits for the dancers who already have suits, even if it reduces the overall spending.

    原意:给出一串数字,让他们回文,而且费用最小

    题解:一个前指针head,一个后指针tail

    四种情况:1.c[head]+c[tail]=1 表明是0+1,输出错误

          2.c[head]+c[tail]=2 表明⑴1+1 那么跳过 ;⑵0+2,那么选白色的

          3.c[head]+c[tail]=3 表明1+2 那么选黑色的

          4.c[head]+c[tail]=4 表明2+2,选费用少的衣服

    代码:

    n,a,b = map(int,input().split())
    c = list(map(int,input().split()))
    
    head = 0
    tail = n-1
    tot = 0
    if (a>b):
        d = b
    else:
        d = a
    
    while (head < tail):
        if (c[head]+c[tail] == 2 and (c[tail]!=c[head])):
           tot += a
        elif (c[head]+c[tail] == 3):
            tot += b
        elif (c[head] + c[tail] == 4):
            tot += d*2
        elif (c[head]+c[tail] == 1):
            print(-1)
            exit()
        head += 1
        tail -= 1
    if (n%2 == 1):
        if (c[n//2] == 2):
            tot += d
    print(tot)
    

      

    顺便贴上学到的语法:

    read = lambda :list(map(int,input().split()))
    n,a,b = read()
    c = read()
    print(n,a,b)
    print(c)
    n,a,b = [*map(int,input().split())]
    c = [*map(int,input().split())]
    print(n,a,b)
    print(c)
    

      

      

  • 相关阅读:
    Codeforces 1005E1&2 Median on Segments (General Case & Permutations Edition)
    洛谷 P3952 时间复杂度 【模拟】【2017 noip d1t2】
    Codeforces 1000E We Need More Bosses 【无向图缩点】【树的直径】
    Codeforces 1003E Tree Constructing 【构造】【性质】
    2019年7月5日_实验室学术论文研讨
    2019年6月28日实验室学术讨论会议
    2019年6月12日实验室学术讨论
    2019年6月20日实验室学术讨论会议
    2019年5月31日实验室学术讨论会议
    2019年5月17日实验室学术讨论会议
  • 原文地址:https://www.cnblogs.com/oxxxo/p/9844101.html
Copyright © 2011-2022 走看看