zoukankan      html  css  js  c++  java
  • CROC 2016

    B. Mischievous Mess Makers

    题目连接:

    http://www.codeforces.com/contest/655/problem/B

    Description

    It is a balmy spring afternoon, and Farmer John's n cows are ruminating about link-cut cacti in their stalls. The cows, labeled 1 through n, are arranged so that the i-th cow occupies the i-th stall from the left. However, Elsie, after realizing that she will forever live in the shadows beyond Bessie's limelight, has formed the Mischievous Mess Makers and is plotting to disrupt this beautiful pastoral rhythm. While Farmer John takes his k minute long nap, Elsie and the Mess Makers plan to repeatedly choose two distinct stalls and swap the cows occupying those stalls, making no more than one swap each minute.

    Being the meticulous pranksters that they are, the Mischievous Mess Makers would like to know the maximum messiness attainable in the k minutes that they have. We denote as pi the label of the cow in the i-th stall. The messiness of an arrangement of cows is defined as the number of pairs (i, j) such that i < j and pi > pj.

    Input

    The first line of the input contains two integers n and k (1 ≤ n, k ≤ 100 000) — the number of cows and the length of Farmer John's nap, respectively.

    Output

    Output a single integer, the maximum messiness that the Mischievous Mess Makers can achieve by performing no more than k swaps.

    Sample Input

    5 2

    Sample Output

    10

    Hint

    题意

    给你1到n的序列,然后你可以最多交换k次

    让你使得逆序数最多,问你答案是多少

    题解:

    贪心,第一个数和最后一个数交换,第二个数和倒数第二个数交换,然后这样就好了

    每次对答案的贡献是2*(n-i-i)+1

    这个画画图就知道了。

    代码

    #include<bits/stdc++.h>
    using namespace std;
    
    long long ans,n,k;
    int main()
    {
        cin>>n>>k;
        for(int i=1;i+i<=n&&i<=k;i++)
            ans+=2*(n-i-i)+1;
        cout<<ans<<endl;
    }
  • 相关阅读:
    Heap(堆)和stack(栈)有的区别是什么。
    i++和++i的深入理解
    JDBC之java数据库的连接与简单的sql语句执行
    java前三本基础知识总结
    数据库的一些基础
    SQL 同时查看2个表
    JMeter 问题
    Linux 常用命令
    java io (一)
    验证密码必须是字母加数字的组合
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5300039.html
Copyright © 2011-2022 走看看