Given a N × N matrix A, whose element in the i-th row and j-th column Aij is an number that equals i2 + 100000 × i + j2 - 100000 × j + i × j, you are to find the M-th smallest element in the matrix.

Input

The first line of input is the number of test case.
For each test case there is only one line contains two integers, N(1 ≤ N ≤ 50,000) and M(1 ≤ M ≤ N × N). There is a blank line before each test case.

Output

For each test case output the answer on a single line.

Sample Input

12

1 1

2 1

2 2

2 3

2 4

3 1

3 2

3 8

3 9

5 1

5 25

5 10

Sample Output

3
-99993
3
12
100007
-199987
-99993
100019
200013
-399969
400031
-99939 思路:观察列递增,行递减,枚举列进行二分算出第M大,然后二分枚举X是第几大,二分套二分,代码如下:
typedef long long LL;

const LL INF = 0x3f3f3f3f3f3f3;

LL N, M;

LL calculate(LL i, LL j) {
return i * i + * i + j * j - * j + i * j;
} LL check(LL num) {
LL sum = , l, r, mid;
for (int i = ; i <= N; ++i) {
l = , r = N;
while(l <= r) {
mid = (r + l) >> ;
if(calculate(mid,i) > num) {
r = mid - ;
}
else
l = mid + ;
}
sum += r;
}
return sum;
} int main() {
LL T;
scanf("%I64d", &T);
while(T--) {
scanf("%I64d%I64d", &N, &M);
LL l = -INF, r = INF, mid;
while(l <= r) {
mid = (r + l) >> ;
if(check(mid) < M) {
l = mid + ;
}
else
r = mid - ;
}
printf("%I64d\n", l);
}
return ;
}

 小结:如何寻找二分的答案,如果mid是所求答案,那么check(mid)为true,更新r的值为mid-1,之后的check都是false,从而更新l,最后l变为mid,输出mid。

 比如>=的情况就是true的情况,所以一般答案都是非>=的那一侧。

补:
在二分时,注意满足的条件是满足题意还是不满足题意,New如下:(一般来说ans都在等于的那一侧,但是哪一侧是l哪一侧是r需要判断
typedef long long LL;

LL N, M, mid, ans;

LL calculate(LL i, LL j) {
return i * i + * i + j * j - * j + i * j;
} LL check(LL x) {
LL l, r, mid, sum = , ans;
for(int i = ; i <= N; ++i) {
l = , r = N, ans = ;
while(l <= r) {
mid = (r + l) >> ;
if(calculate(mid, i) <= x) {
ans = mid;
l = mid + ;
} else {
r = mid - ;
} }
sum += ans;
}
return sum;
} const LL INF = 0x3f3f3f3f3f3f3;
int main() {
int T;
scanf("%d", &T);
while(T--) {
scanf("%I64d%I64d", &N, &M);
//LL l = calculate(1, N), r = calculate(N, 1);
LL l = -INF, r = INF;
while(l <= r) {
mid = (r + l) >> ;
if(check(mid) < M) {
l = mid + ;
} else {
ans = mid;
r = mid - ;
}
}
printf("%I64d\n", ans);
}
return ;
}

Day3-P - Matrix POJ3685的更多相关文章

  1. 冬令营DAY3 T1 Matrix

    题目描述 Description    生活中,我们常常用 233 表示情感.实际上,我们也会说 2333,23333,等等. 于是问题来了: 定义一种矩阵,称为 233 矩阵.矩阵的第一行依次是 2 ...

  2. Matrix [POJ3685] [二分套二分]

    Description 有一个N阶方阵 第i行,j列的值Aij =i2 + 100000 × i + j2 - 100000 × j + i × j,需要找出这个方阵的第M小值. Input 第一行输 ...

  3. POJ3685 Matrix —— 二分

    题目链接:http://poj.org/problem?id=3685 Matrix Time Limit: 6000MS   Memory Limit: 65536K Total Submissio ...

  4. POJ3685 Matrix(嵌套二分)

    同行元素递减,同列元素递增,采用嵌套二分的方法 #include<cstdio> #include<iostream> #include<cstdlib> #inc ...

  5. poj3685 Matrix

    思路: 二分套二分. 矩阵在每一列上是严格递增的,可以利用这一点进行二分. 实现: #include <cstdio> #include <cmath> #include &l ...

  6. 2019暑期金华集训 Day3 图论

    自闭集训 Day3 图论 NOI2019 D2T1 没有真正建出图来的必要,可以直接打取\(\min\)的\(tag\). 也可以把边压进堆里,然后变成一个二维清点问题(???),然后就线段树+并查集 ...

  7. 【POJ - 3685】Matrix(二分)

    Matrix Descriptions 有一个N阶方阵 第i行,j列的值Aij =i2 + 100000 × i + j2 - 100000 × j + i × j,需要找出这个方阵的第M小值. In ...

  8. angular2系列教程(十一)路由嵌套、路由生命周期、matrix URL notation

    今天我们要讲的是ng2的路由的第二部分,包括路由嵌套.路由生命周期等知识点. 例子 例子仍然是上节课的例子:

  9. Pramp mock interview (4th practice): Matrix Spiral Print

    March 16, 2016 Problem statement:Given a 2D array (matrix) named M, print all items of M in a spiral ...

随机推荐

  1. 创业学习---今日头条创业过程分析---HHR计划

    本文搜集和整理了今日头条创业的一些关键点的资料------by 春跃(本文的主要观点都是搜集整理,所以不得本人同意不得转载) 一,18年之前的今日头条创业时间表: 1,张一鸣参与创业的履历:酷讯,饭否 ...

  2. ZOJ007 Numerical Summation of a Series(纯数学)

    #include<bits/stdc++.h> using namespace std; int main() { double i; double k; for(i=0.000;i-2. ...

  3. EAP认证

    EAP信息交换: 上图中展示的是OTP(一次性密码)实现EAP交换过程,具体的EAP交换过程如下: 步骤1:请求方向认证方发送EAPOL-Start消息,通知对方已经做到了认证准备(注意:若会话由认证 ...

  4. JAXB - java xml解析

    常用API JAXBContext类,是应用的入口,通过该类创建序列化和反序列化对象,也即编组对象和解组对象: Marshaller 编组接口,将Java对象序列化为XML数据: Unmarshall ...

  5. 重新梳理IT知识之java-01语法(一)

    标识符的命名规范 包名:xxxyyyzzz 类名.接口名:XxxYyyZzz (大驼峰) 变量名.方法名:xxxYyyZzz 常量名:XXX_YYY_ZZZ //**************强制类型转 ...

  6. C++ STL之unordered_map和unordered_set的使⽤

    写在最前面,本文摘录于柳神笔记: unordered_map 在头⽂件 #include <unordered_map> 中, unordered_set 在头⽂件 #include &l ...

  7. leetcode 0209

    目录 ✅ 500. 键盘行 描述 解答 ✅ 905. 按奇偶排序数组 描述 解答 py sorted 参数详解 ✅ 559. N叉树的最大深度 描述 解答 java dfs-like method(r ...

  8. OpenTSDB 写入数据

    1. 关于 Metrics, value, tag name, tag value opentsdb的每个时间序列必须有一个metric和一个或多个tag对,每个时间序列每小时的数据保存一行.open ...

  9. php 基础知识 post 和get 两种传输方式的区别

    1.post更安全(不会作为url的一部分,不会被缓存.保存在服务器日志.以及浏览器浏览记录中) 2.post发送的数据量更大(get有url长度限制) 3.post能发送更多的数据类型(get只能发 ...

  10. Ubuntu开启端口(持久化)

    1.查看已经开启的端口 sudo ufw status 2.打开80端口 sudo ufw allow 3.防火墙开启 sudo ufw enable 4.防火墙重启 sudo ufw reload