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

UVALive 2756 Crazy tea party

时间:2019-10-19 22:21:32      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:n+1   display   spl   lap   event   clu   main   view   nbsp   

这道题目考察的n个不同的数环形排列,每次相邻两个数交换位置,这样由正序转变成逆序所需操作的最小次数t。

公式:环形排列:t= n/2*(n/2 - 1)/2 + (n+1)/2* ((n+1)/2 - 1)/2 

在这里在补充下线性排列的公式:t=n*(n-1)/2

技术图片
 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main ()
 5 {
 6     int t;
 7     cin >> t;
 8     while ( t-- )
 9     {
10         int n;
11         cin >> n;
12         int m = ( n / 2 ) * ( n / 2 - 1 ) / 2 + ( ( n + 1 ) / 2 ) * ( ( n + 1 ) / 2 - 1 ) / 2;
13         cout << m << endl;
14     }
15     return 0;
16 }
View Code

 

UVALive 2756 Crazy tea party

标签:n+1   display   spl   lap   event   clu   main   view   nbsp   

原文地址:https://www.cnblogs.com/ljy08163268/p/11706005.html

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