You are given a n×n chessboard. Rows and columns of the board are numbered from 1 to n. Cell (x,y) lies on the intersection of column number x and row number y.
Rook is a chess piece, that can in one turn move any number of cells vertically or horizontally. There are m rooks (m In one turn you can move one of the rooks any number of cells vertically or horizontally. Additionally, it shouldn’t be attacked by any other rook after movement. What is the minimum number of moves required to place all the rooks on the main diagonal? The main diagonal of the chessboard is all the cells (i,i), where 1≤i≤n. Input The first line of each test case contains two integers n and m — size of the chessboard and the number of rooks (2≤n≤105, 1≤m The sum of n over all test cases does not exceed 105. Output It can be proved that this is always possible.
The first line contains the number of test cases t (1≤t≤103). Description of the t test cases follows.
For each of t test cases print a single integer — the minimum number of moves required to place all the rooks on the main diagonal.
一张N×N的图,会有M个车(按象棋中车,一次可走一行)放在图中。把这些车移动到对角线上,问最少需要几步?
判断是否形成环,形成环至少需要棋子数+1,才可以。#include