【KMP】【最小表示法】NCPC 2014 H clock pictures

题目链接:

  http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1794

题目大意:

  两个无刻度的钟面,每个上面有N根针(N<=200000),每个针都是相同的,分别指向Ai,Bi(360°被分成360000小份),问能否将其中一个旋转和另一个重合。

题目思路:

  【KMP】【最小表示法】

  循环同构问题。可以写KMP,我懒得写KMP了就写了循环同构的最小表示法。

  首先将Ai排序,然后求差(记得取模360000,WA了一次),接下来复制一遍开始匹配。

  A从第I位开始匹配,B从第J位开始匹配,匹配了k位发现不相同的时候,如果A[i+k]>B[j+k],将I移至I+K+1,否则J移至J+K+1.直到匹配N位或无解。

 1 //
 2 //by coolxxx
 3 //#include<bits/stdc++.h>
 4 #include<iostream>
 5 #include<algorithm>
 6 #include<string>
 7 #include<iomanip>
 8 #include<map>
 9 #include<stack>
10 #include<queue>
11 #include<set>
12 #include<bitset>
13 #include<memory.h>
14 #include<time.h>
15 #include<stdio.h>
16 #include<stdlib.h>
17 #include<string.h>
18 //#include<stdbool.h>
19 #include<math.h>
20 #define min(a,b) ((a)<(b)?(a):(b))
21 #define max(a,b) ((a)>(b)?(a):(b))
22 #define abs(a) ((a)>0?(a):(-(a)))
23 #define lowbit(a) (a&(-a))
24 #define sqr(a) ((a)*(a))
25 #define swap(a,b) ((a)^=(b),(b)^=(a),(a)^=(b))
26 #define mem(a,b) memset(a,b,sizeof(a))
27 #define eps (1e-8)
28 #define J 10
29 #define mod 360000
30 #define MAX 0x7f7f7f7f
31 #define PI 3.14159265358979323
32 #define N 400004
33 using namespace std;
34 typedef long long LL;
35 int cas,cass;
36 int n,m,lll,ans;
37 int a[N],b[N],aa[N],bb[N];
38 bool cmp(int aa,int bb)
39 {
40     return aa<bb;
41 }
42 int main()
43 {
44     #ifndef ONLINE_JUDGE
45 //    freopen("1.txt","r",stdin);
46 //    freopen("2.txt","w",stdout);
47     #endif
48     int i,j,k;
49
50 //    for(scanf("%d",&cass);cass;cass--)
51 //    for(scanf("%d",&cas),cass=1;cass<=cas;cass++)
52 //    while(~scanf("%s",s+1))
53     while(~scanf("%d",&n))
54     {
55         for(i=1;i<=n;i++)
56             scanf("%d",&aa[i]);
57         for(i=1;i<=n;i++)
58             scanf("%d",&bb[i]);
59         sort(aa+1,aa+1+n,cmp);
60         sort(bb+1,bb+1+n,cmp);
61         aa[n+1]=aa[1],bb[n+1]=bb[1];
62         for(i=1;i<=n;i++)
63             a[i+n]=a[i]=(aa[i+1]-aa[i]+mod)%mod,b[i+n]=b[i]=(bb[i+1]-bb[i]+mod)%mod;
64         for(i=1,j=1;i<=n && j<=n;)
65         {
66             for(k=0;k<n;k++)
67             {
68                 if(a[i+k]!=b[j+k])
69                 {
70                     if(a[i+k]>b[i+k])
71                     {
72                         i=i+k+1;
73                         break;
74                     }
75                     else
76                     {
77                         j=j+k+1;
78                         break;
79                     }
80                 }
81             }
82             if(k==n)break;
83         }
84         if(k==n)puts("possible");
85         else puts("impossible");
86     }
87     return 0;
88 }
89 /*
90 //
91
92 //
93 */

时间: 2024-10-14 01:04:36

【KMP】【最小表示法】NCPC 2014 H clock pictures的相关文章

hdu5442(2015长春赛区网络赛1006)后缀数组+KMP /最小表示法?

题意:给定一个由小写字母组成的长度为 n 的字符串,首尾相连,可以从任意一个字符开始,顺时针或逆时针取这个串(长度为 n),求一个字典序最大的字符串的开始字符位置和顺时针或逆时针.如果有多个字典序最大的字符串,优先选择开始位置靠前的,如果开始位置相同,优先选择顺时针. 这种字符串的问题,第一反应是后缀数组,为了达到首尾相连的目的,所以先复制了一个两倍长的该字符串,然后再将串倒置,也弄成两倍长度,得到顺逆时针的两倍长的串,并对这两个字符串分别做后缀数组,得到 sa 数组(该串字典序第几小的后缀的开

hdu3374 kmp+最小表示法

Give you a string with length N, you can generate N strings by left shifts. For example let consider the string "SKYLONG", we can generate seven strings: String Rank SKYLONG 1 KYLONGS 2 YLONGSK 3 LONGSKY 4 ONGSKYL 5 NGSKYLO 6 GSKYLON 7 and lexic

HDU 3374 (KMP 最小表示法)

String Problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2442    Accepted Submission(s): 1029 Problem Description Give you a string with length N, you can generate N strings by left shift

HDU 3374(KMP+最小表示法)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3374 题意:给出字符串,求最小表示法和最大表示法,并输出有几次出现,其实就是最小循环节的个数 题解:最小表示法求解,KMP求解最小循环节 最小循环节 = len - Next[len]  个数必须整出,如不整除,则为1. 代码如下: #include<iostream> #include<cstdio> #include<algorithm> #include<cst

HDOJ3374 String Problem [KMP最小循环节点]+[最小(大)表示法]

String Problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1442    Accepted Submission(s): 645 Problem Description Give you a string with length N, you can generate N strings by left shifts

String Problem hdu 3374 最小表示法加KMP的next数组

String Problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1492    Accepted Submission(s): 662 Problem Description Give you a string with length N, you can generate N strings by left shifts.

Hdu 5442 Favorite Donut (2015 ACM/ICPC Asia Regional Changchun Online 最大最小表示法 + KMP)

题目链接: Hdu 5442 Favorite Donut 题目描述: 给出一个文本串,找出顺时针或者逆时针循环旋转后,字典序最大的那个字符串,字典序最大的字符串如果有多个,就输出下标最小的那个,如果顺时针和逆时针的起始下标相同,则输出顺时针. 解题思路: 看到题目感觉后缀数组可以搞,正准备犯傻被队友拦下了,听队友解释一番,果断丢锅给队友.赛后试了一下后缀数组果然麻烦的不要不要的(QWQ),还是最大最小表示法 + KMP来的干净利索. 最大表示法:对于一个长度为len文本串,经过循环旋转得到长度

HDOJ3374 String Problem 【KMP】+【最小表示法】

String Problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1512    Accepted Submission(s): 668 Problem Description Give you a string with length N, you can generate N strings by left shifts

[coj 1353 Guessing the Number]kmp,字符串最小表示法

题意:给一个字符串,求它的最小子串,使得原串是通过它重复得到的字符串的一个子串. 思路:先求最小长度,最小循环长度可以利用kmp的next数组快速得到,求出长度后然后利用字符串最小表示法求循环节的最小表示即可. #pragma comment(linker, "/STACK:10240000") #include <map> #include <set> #include <cmath> #include <ctime> #include