Numbers on Whiteboard (codeforces1430)(数学分析)

简介: Numbers on Whiteboard (codeforces1430)(数学分析)

Numbers 1,2,3,…𝑛 (each integer from 1 to 𝑛 once) are written on a board. In one operation you can erase any two numbers 𝑎 and 𝑏 from the board and write one integer 𝑎+𝑏2 rounded up instead.


You should perform the given operation 𝑛−1 times and make the resulting number that will be left on the board as small as possible.


For example, if 𝑛=4, the following course of action is optimal:


choose 𝑎=4 and 𝑏=2, so the new number is 3, and the whiteboard contains [1,3,3];

choose 𝑎=3 and 𝑏=3, so the new number is 3, and the whiteboard contains [1,3];

choose 𝑎=1 and 𝑏=3, so the new number is 2, and the whiteboard contains [2].

It’s easy to see that after 𝑛−1 operations, there will be left only one number. Your goal is to minimize it.


Input

The first line contains one integer 𝑡 (1≤𝑡≤1000) — the number of test cases.


The only line of each test case contains one integer 𝑛 (2≤𝑛≤2⋅105) — the number of integers written on the board initially.


It’s guaranteed that the total sum of 𝑛 over test cases doesn’t exceed 2⋅105.


Output

For each test case, in the first line, print the minimum possible number left on the board after 𝑛−1 operations. Each of the next 𝑛−1 lines should contain two integers — numbers 𝑎 and 𝑏 chosen and erased in each operation.


Example

inputCopy

1

4

outputCopy

2

2 4

3 3

3 1


题意翻译



T次询问,对于每一次询问:


给定 n 个数,为 1,2,3,...,n每次可以选择两个数 a,b 并删除,然后把[(a+b)/2⌉ 加入到这些数中。最小化最后剩下的一个数,输出这个数并且输出构造方案。


额,还是一个水题简单模拟就行;


从后往前依次合并,可以保证最大数每次减少1或者不变,最优结果为2,注意从第2位开始。

额,一到水题,写了2份ac代码,可选择看;


有事你就q我;QQ2917366383


学习算法

#include <iostream>
#include <cstring>
#include <ctime>
#include <algorithm>
using namespace std;
int t,n;
void solve(){
    printf("2\n");
    int _t;
    _t = n;
    if(n == 2){
        printf("1 2\n");
        return;
    }//打印2段是为了让你们看得清楚一点。
    printf("%d %d\n",n-2,n);
    printf("%d %d\n",n-1,n-1);
    for(int i = n-3;i >= 1;--i){
        printf("%d %d\n",i,i + 2);
    }
}
int main(){
    scanf("%d",&t);
    while(t--){
        scanf("%d",&n);
        solve();
    }
    return 0;//听懂掌声
}


#include<bits/stdc++.h>
using namespace std;
int n,t;
void pk()
{
  cout<<"2"<<endl;
  if(n==2)
  {
      cout<<"1"<<' '<<"2"<<endl;
      return;
  }
cout<<n-2<<' '<<n<<endl;
cout<<n-1<<' '<<n-1<<endl;
for(int i=n-3;i>=1;i--)
cout<<i<<' '<<i+2<<endl;
}
int main()
{
  cin>>t;
  while(t--)
  {
    cin>>n;
    pk(); 
  }
return 0; 
 } 
相关文章
离散数学-考纲版-01-命题逻辑
离散数学-考纲版-01-命题逻辑
|
算法
Plant(快速幂+数学分析(没想到吧,数学无处不在))
Plant(快速幂+数学分析(没想到吧,数学无处不在))
72 0
【离散数学】命题逻辑
1. 命题 2. 联结词 3. 真值表 4. 等价公式 5. 蕴含式 6. 对偶式 7. 范式 8. 推理理论
337 0
【离散数学】命题逻辑
|
算法
数学知识:中国剩余定理
复习acwing算法基础课的内容,本篇为讲解数学知识:中国剩余定理,关于时间复杂度:目前博主不太会计算,先鸽了,日后一定补上。
209 0
数学知识:中国剩余定理
|
算法 开发者
算法笔试模拟题精解之“矩阵最小路径和”
本题可以用动态规划的方法来解决。计算一个格子到右下角的最小路径需要两个数据,一个是右边格子到右下角的最小路径,一个是下边格子到右下角的最小路径,两个数据的较小值加上当前格子的数值即为最小路径。
|
存储 算法
笔试算法模拟题精解之“矩阵最小路径和”
本文介绍了暴力递归求解和动态规划求解两种方法来解答这道题目。
|
Perl 人工智能
跟锦数学2017年05月
(170501) 证明: 当 $m\sqrt{1+x^2},\quad x>0. \eex$$       (170513) 设数列 $\sed{x_n}$ 满足 $00,\st \\ \sen{x}\leq 1,\ \sen{y}\leq 1,\ \sen{x-y}\geq \ve\ra \sen{x+y}\leq 2(1-\del).
1156 0
|
Perl
跟锦数学2017年04月
(170430) 令 $\dps{B(m,n)=\sum_{k=0}^n C_n^k \frac{(-1)^k}{m+k+1}}$, $m,n\in\bbN^+$. (1) 证明 $B(m,n)=B(n,m)$; (2) 计算 $B(m,n)$.
1094 0
|
资源调度 Perl
跟锦数学2017年03月
(170331) [南开大学 2014 年高等代数考研试题] 设 $\sigma,\tau$ 为线性变换, 且 $\sigma$ 有 $n$ 个不同的特征值. 证明: 若 $\sigma\tau=\tau\sigma$, 则 $\tau$ 可由 $I$, $\sigma$, $\sigma^2$, $\cdots$, $\sigma^{n-1}$ 线性表出, 其中 $I$ 为恒等变换.
1077 0

热门文章

最新文章