On her way to programming school tiger Dasha faced her first test — a huge staircase!
The steps were numbered from one to infinity. As we know, tigers are very fond of all striped things, it is possible that it has something to do with their color. So on some interval of her way she calculated two values — the number of steps with even and odd numbers.
You need to check whether there is an interval of steps from the l-th to the r-th (1 ≤ l ≤ r), for which values that Dasha has found are correct.
In the only line you are given two integers a, b (0 ≤ a, b ≤ 100) — the number of even and odd steps, accordingly.
In the only line print "YES", if the interval of steps described above exists, and "NO" otherwise.
2 3
YES
3 1
NO
In the first example one of suitable intervals is from 1 to 5. The interval contains two even steps — 2 and 4, and three odd: 1, 3 and 5.
题意:判断是否能够走a个偶数步 b个奇数步
题解:水
1 #include <iostream> 2 #include <cstdio> 3 #include <cstdlib> 4 #include <cstring> 5 #include <algorithm> 6 #include <stack> 7 #include <queue> 8 #include <cmath> 9 #include <map> 10 #define ll __int64 11 #define mod 1000000007 12 #define dazhi 2147483647 13 using namespace std; 14 int a,b; 15 int main() 16 { 17 scanf("%d %d",&a,&b); 18 if(a==0&&b==0) 19 { 20 printf("NO "); 21 return 0; 22 } 23 if(a==b||a+1==b||b+1==a) 24 printf("YES "); 25 else 26 printf("NO "); 27 return 0; 28 }
Running with barriers on the circle track is very popular in the country where Dasha lives, so no wonder that on her way to classes she saw the following situation:
The track is the circle with length L, in distinct points of which there are n barriers. Athlete always run the track in counterclockwise direction if you look on him from above. All barriers are located at integer distance from each other along the track.
Her friends the parrot Kefa and the leopard Sasha participated in competitions and each of them ran one lap. Each of the friends started from some integral point on the track. Both friends wrote the distance from their start along the track to each of the n barriers. Thus, each of them wrote n integers in the ascending order, each of them was between 0 and L - 1, inclusively.
There are several tracks in the country, all of them have same length and same number of barriers, but the positions of the barriers can differ among different tracks. Now Dasha is interested if it is possible that Kefa and Sasha ran the same track or they participated on different tracks.
Write the program which will check that Kefa's and Sasha's tracks coincide (it means that one can be obtained from the other by changing the start position). Note that they always run the track in one direction — counterclockwise, if you look on a track from above.
The first line contains two integers n and L (1 ≤ n ≤ 50, n ≤ L ≤ 100) — the number of barriers on a track and its length.
The second line contains n distinct integers in the ascending order — the distance from Kefa's start to each barrier in the order of its appearance. All integers are in the range from 0 to L - 1 inclusively.
The second line contains n distinct integers in the ascending order — the distance from Sasha's start to each barrier in the order of its overcoming. All integers are in the range from 0 to L - 1 inclusively.
Print "YES" (without quotes), if Kefa and Sasha ran the coinciding tracks (it means that the position of all barriers coincides, if they start running from the same points on the track). Otherwise print "NO" (without quotes).
3 8
2 4 6
1 5 7
YES
4 9
2 3 5 8
0 1 3 6
YES
2 4
1 3
1 2
NO
The first test is analyzed in the statement.
题意:长度为了l的环 有n个观测点 现在AB两个人描述自己逆时针距离各个观测点的距离 判断是否满足实际
题解:暴力
1 #include <iostream> 2 #include <cstdio> 3 #include <cstdlib> 4 #include <cstring> 5 #include <algorithm> 6 #include <stack> 7 #include <queue> 8 #include <cmath> 9 #include <map> 10 #define ll __int64 11 #define mod 1000000007 12 #define dazhi 2147483647 13 using namespace std; 14 int n,l; 15 int a[105]; 16 int b[105]; 17 map<int,int >mp; 18 int main() 19 { 20 scanf("%d %d",&n,&l); 21 for(int i=0;i<n;i++) 22 scanf("%d",&a[i]); 23 for(int i=0;i<n;i++) 24 scanf("%d",&b[i]); 25 int jishu=0; 26 for(int i=0;i<l;i++) 27 { 28 for(int j=0;j<l;j++) 29 { 30 jishu=0; 31 mp.clear(); 32 for(int k=0;k<n;k++) 33 mp[(i+a[k])%l]=1; 34 for(int k=0;k<n;k++) 35 if(mp[(j+b[k])%l]) 36 jishu++; 37 if(jishu==n) 38 { 39 printf("YES "); 40 return 0; 41 } 42 } 43 } 44 printf("NO "); 45 return 0; 46 }
题意:给你一颗树 判断是否能够放在坐标轴中 要求每个点不能重合 每条边都平行于坐标轴
题解:dfs 前向星 存双向边 若某个点的度大于8则必然无法实现题目要求 从根结点开始向下遍历 每一层最多4个分支 每一层的边的长度随着深度的增加边的长度减少
这就可以防止相邻分支的重点
1 #include <iostream> 2 #include <cstdio> 3 #include <cstdlib> 4 #include <cstring> 5 #include <algorithm> 6 #include <stack> 7 #include <queue> 8 #include <cmath> 9 #include <map> 10 #define ll __int64 11 #define mod 1000000007 12 #define dazhi 2147483647 13 ll M=100000000000000000; 14 using namespace std; 15 struct node 16 { 17 int pre; 18 int to; 19 }N[35]; 20 int pre[50]; 21 int du[50]; 22 int n; 23 int l,r; 24 int nedge=0; 25 int mp[50]; 26 ll xxx[50],yyy[50]; 27 void add(int p,int t) 28 { 29 du[p]++; 30 du[t]++; 31 nedge++; 32 N[nedge].to=t; 33 N[nedge].pre=pre[p]; 34 pre[p]=nedge; 35 } 36 void dfs(int root,ll xx,ll yy,int de,int from) 37 { 38 mp[root]=1; 39 xxx[root]=xx; 40 yyy[root]=yy; 41 int gg=1; 42 for(int i=pre[root];i;i=N[i].pre) 43 { 44 if(mp[N[i].to]) 45 continue; 46 if((gg+from)==0) 47 { 48 gg++; 49 } 50 if(gg==1){ 51 dfs(N[i].to,xx,yy-(M>>de),de+1,-3); 52 } 53 if(gg==2) 54 dfs(N[i].to,xx-(M>>de),yy,de+1,-4); 55 if(gg==3) 56 dfs(N[i].to,xx,yy+(M>>de),de+1,-1); 57 if(gg==4) 58 dfs(N[i].to,xx+(M>>de),yy,de+1,-2); 59 gg++; 60 } 61 return ; 62 } 63 int main() 64 { 65 memset(du,0,sizeof(du)); 66 memset(pre,0,sizeof(pre)); 67 memset(mp,0,sizeof(mp)); 68 scanf("%d",&n); 69 for(int i=1;i<=n-1;i++) 70 { 71 scanf("%d %d",&l,&r); 72 add(l,r); 73 add(r,l); 74 } 75 for(int i=1;i<=n;i++) 76 { 77 if(du[i]>8){ 78 printf("NO "); 79 return 0; 80 } 81 } 82 printf("YES "); 83 ll x=0,y=0,deep=1; 84 dfs(1,x,y,deep,0); 85 for(int i=1;i<=n;i++) 86 printf("%I64d %I64d ",xxx[i],yyy[i]); 87 return 0; 88 }