您的位置:首页 > 其它

CodeForcesGym 100502H Clock Pictures

2015-04-27 19:46 716 查看

Clock Pictures

Time Limit: 1000ms
Memory Limit: 524288KB
This problem will be judged on CodeForcesGym. Original ID: 100502H
64-bit integer IO format: %I64d Java class name: (Any)

You have two pictures of an unusual kind of clock. The clock has n hands, each having the same length and no kind of marking whatsoever. Also, the numbers on the clock are so faded that you can’t even tell anymore what direction is up in the picture. So the only thing that you see on the pictures, are n shades of the n hands, and nothing else.

You’d like to know if both images might have been taken at exactly the same time of the day, possibly with the camera rotated at different angles.

Task

Given the description of the two images, determine whether it is possible that these two pictures could be showing the same clock displaying the same time.

Input

The first line contains a single integer n (2 ≤ n ≤ 200000), the number of hands on the clock.

Each of the next two lines contains n integers ai (0 ≤ ai < 360000), representing the angles of the hands of the clock on one of the images, in thousandths of a degree. The first line represents the position of the hands on the first image, whereas the second line corresponds to the second image. The number ai denotes the angle between the recorded position of some hand and the upward direction in the image, measured clockwise. Angles of the same clock are distinct and are not given in any specific order.

Output

Output one line containing one word: possible if the clocks could be showing the same time, impossible otherwise.

#include <bits/stdc++.h>
using namespace std;
const int maxn = 200010,mod = 360000;
int fail[maxn],a[maxn],b[maxn],c[maxn<<1],n;
void getNext(){
fail[0] = fail[1] = 0;
for(int i = 1; i < n; ++i){
int j = fail[i];
while(j && a[i] != a[j]) j = fail[j];
fail[i + 1] = a[i] == a[j]?j+1:0;
}
}
int main() {
while(~scanf("%d",&n)) {
for(int i = 0; i < n; ++i)
scanf("%d",a+i);
for(int i = 0; i < n; ++i)
scanf("%d",b+i);
sort(a,a+n);
sort(b,b+n);
c[n-1] = (b[0] - b[n - 1] + mod)%mod;
for(int i = 1; i < n; ++i){
a[i-1] = (a[i] - a[i-1] + mod)%mod;
b[i-1] = (b[i] - b[i-1] + mod)%mod;
c[i - 1] = c[i + n - 1] = b[i - 1];
}
getNext();
bool flag = false;
for(int i = 0,j = 0; i < (n<<1)-1; ++i){
while(j && a[j] != c[i]) j = fail[j];
if(a[j] == c[i]) j++;
if(j == n-1){
flag = true;
break;
}
}
puts(flag?"possible":"impossible");
}
return 0;
}
/*
6
1 2 3 4 5 6
7 6 5 4 3 1

2
0 270000
180000 270000

7
140 130 110 120 125 100 105
235 205 215 220 225 200 240
*/


View Code
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: