Clarke and points
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 127 Accepted Submission(s): 98
Problem Description
Clarke is a patient with multiple personality disorder. One day he turned into a learner of geometric.
He did a research on a interesting distance called Manhattan Distance. The Manhattan Distance between point A(xA,yA) and point B(xB,yB) is |xA−xB|+|yA−yB| .
Now he wants to find the maximum distance between two points of n points.
He did a research on a interesting distance called Manhattan Distance. The Manhattan Distance between point A(xA,yA) and point B(xB,yB) is |xA−xB|+|yA−yB| .
Now he wants to find the maximum distance between two points of n points.
Input
The first line contains a integer
T(1≤T≤5)
, the number of test case.
For each test case, a line followed, contains two integers n,seed(2≤n≤1000000,1≤seed≤109) , denotes the number of points and a random seed.
The coordinate of each point is generated by the followed code.
```
long long seed;
inline long long rand(long long l, long long r) {
static long long mo=1e9+7, g=78125;
return l+((seed*=g)%=mo)%(r-l+1);
}
// ...
cin >> n >> seed;
for (int i = 0; i < n; i++)
x[i] = rand(-1000000000, 1000000000),
y[i] = rand(-1000000000, 1000000000);
```
For each test case, a line followed, contains two integers n,seed(2≤n≤1000000,1≤seed≤109) , denotes the number of points and a random seed.
The coordinate of each point is generated by the followed code.
```
long long seed;
inline long long rand(long long l, long long r) {
static long long mo=1e9+7, g=78125;
return l+((seed*=g)%=mo)%(r-l+1);
}
// ...
cin >> n >> seed;
for (int i = 0; i < n; i++)
x[i] = rand(-1000000000, 1000000000),
y[i] = rand(-1000000000, 1000000000);
```
Output
For each test case, print a line with an integer represented the maximum distance.
Sample Input
2 3 233 5 332
Sample Output
#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
typedef long long ll;
const int maxn = 1000000 + 10;
struct point{
ll x, y;
}a[maxn];
ll seed;
inline long long Rand(long long l,long long r) {
static long long mo=1e9+7, g=78125;
return l+((seed*=g)%=mo)%(r-l+1);
}
int main(){
int t,n;
cin>>t;
while(t--){
cin>>n>>seed;
for(int i = 0; i < n; i++){
a[i].x = Rand(-1000000000, 1000000000),
a[i].y = Rand(-1000000000, 1000000000);
}
ll xMax = a[0].x + a[0].y, xMin = a[0].x + a[0].y;
ll yMax = a[0].x - a[0].x, yMin = a[0].x - a[0].y;
for(int i = 1; i < n; i++){
ll ax = a[i].x + a[i].y;
ll in = a[i].x - a[i].y;
xMax = max(xMax, ax);
xMin = min(xMin, ax);
yMax = max(yMax, in);
yMin = min(yMin, in);
}
ll ans = max(abs(xMax - xMin), abs(yMax - yMin));
cout<<ans<<endl;
}
return 0;
}