码迷,mamicode.com
首页 > 其他好文 > 详细

UVA1315 - Crazy tea party(推导)

时间:2014-09-15 19:30:19      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   io   os   ar   art   sp   代码   

题目链接


题意:n个人坐成环形,相邻的两个可以交换位置,求最少交换次数使得序列相反。

思路:类似与冒泡排序,可以将环形序列拆成两个序列,分别进行冒泡。当n为奇数时,分为n/2与n/2 + 1,所以ans = (n / 2) * (n / 2 - 1) / 2 + (n / 2) * (n / 2 + 1) / 2,当n为偶数时,分为两个n/2, 所以ans = (n / 2) * (n / 2 - 1)。

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

int n;

int main() {
    int cas;
    scanf("%d", &cas);
    while (cas--) {
        scanf("%d", &n);    
        if (n == 1 || n == 2)  
            printf("0\n");
        else {
            int ans;
            if (n % 2 == 0) {
                ans = (n / 2) * (n / 2 - 1);
                printf("%d\n", ans);
            }
            else {
                ans = (n / 2) * (n / 2 - 1) / 2 + (n / 2) * (n / 2 + 1) / 2;
                printf("%d\n", ans); 
            } 
        } 
    }
    return 0;
}


UVA1315 - Crazy tea party(推导)

标签:style   http   color   io   os   ar   art   sp   代码   

原文地址:http://blog.csdn.net/u011345461/article/details/39296747

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!