Codeforces Round #277 (Div. 2) A B C 水 模拟 贪心

A. Calculating Function
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

For a positive integer n let's define a function f:

f(n) =  - 1 + 2 - 3 + .. + ( - 1)nn

Your task is to calculate f(n) for a given integer n.

Input

The single line contains the positive integer n (1 ≤ n ≤ 1015).

Output

Print f(n) in a single line.

Examples
input
4
output
2
input
5
output
-3
Note

f(4) =  - 1 + 2 - 3 + 4 = 2

f(5) =  - 1 + 2 - 3 + 4 - 5 =  - 3

 

题意:求f(n) =  - 1 + 2 - 3 + .. + ( - 1)nn

题解:水

 1 /******************************
 2 code by drizzle
 3 blog: www.cnblogs.com/hsd-/
 4 ^ ^    ^ ^
 5  O      O
 6 ******************************/
 7 #include<bits/stdc++.h>
 8 #include<iostream>
 9 #include<cstring>
10 #include<cstdio>
11 #include<map>
12 #include<algorithm>
13 #include<queue>
14 #define LL __int64
15 #define pii pair<int,int>
16 #define MP make_pair
17 using namespace std;
18 LL n;
19 int main()
20 {
21     scanf("%I64d",&n);
22     if(n%2)
23         cout<<(n-1)/2-n<<endl;
24     else
25         cout<<n/2<<endl;;
26 
27     return 0;
28 }
B. OR in Matrix
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Let's define logical OR as an operation on two logical values (i. e. values that belong to the set {0, 1}) that is equal to 1 if either or both of the logical values is set to 1, otherwise it is 0. We can define logical OR of three or more logical values in the same manner:

 where  is equal to 1 if some ai = 1, otherwise it is equal to 0.

Nam has a matrix A consisting of m rows and n columns. The rows are numbered from 1 to m, columns are numbered from 1 to n. Element at row i (1 ≤ i ≤ m) and column j (1 ≤ j ≤ n) is denoted as Aij. All elements of A are either 0 or 1. From matrix A, Nam creates another matrix B of the same size using formula:

.

(Bij is OR of all elements in row i and column j of matrix A)

Nam gives you matrix B and challenges you to guess matrix A. Although Nam is smart, he could probably make a mistake while calculating matrix B, since size of A can be large.

Input

The first line contains two integer m and n (1 ≤ m, n ≤ 100), number of rows and number of columns of matrices respectively.

The next m lines each contain n integers separated by spaces describing rows of matrix B (each element of B is either 0 or 1).

Output

In the first line, print "NO" if Nam has made a mistake when calculating B, otherwise print "YES". If the first line is "YES", then also print mrows consisting of n integers representing matrix A that can produce given matrix B. If there are several solutions print any one.

Examples
input
2 2
1 0
0 0
output
NO
input
2 3
1 1 1
1 1 1
output
YES
1 1 1
1 1 1
input
2 3
0 1 0
1 1 1
output
YES
0 0 0
0 1 0

 题意:  已知. 给你 B矩阵 判断是否有对应的A矩阵

若有则输出YES 并且输出该矩阵 若没有则输出 NO

 题解:  如果存在对应的A矩阵 可以很容易的发现Aij=Bi1&Bi2&....&Bin&B1j&B2j&B3j....&Bmj  

如何判断是否存在满足条件的A矩阵呢? 对于满十字(当前aij为交点的十字上都为1) c[][]标记每一个位置 与B矩阵比较

若a[i][j]&&c[i][j]==0 则不存在A矩阵 输出NO (可以举例验证) 这里的B矩阵用a[][]记录

 1 /******************************
 2 code by drizzle
 3 blog: www.cnblogs.com/hsd-/
 4 ^ ^    ^ ^
 5  O      O
 6 ******************************/
 7 #include<bits/stdc++.h>
 8 #include<iostream>
 9 #include<cstring>
10 #include<cstdio>
11 #include<map>
12 #include<algorithm>
13 #include<queue>
14 #define LL __int64
15 #define pii pair<int,int>
16 #define MP make_pair
17 using namespace std;
18 int m,n;
19 int a[105][105];
20 int b[105][105];
21 int c[105][105];
22 int main()
23 {
24     scanf("%d %d",&m,&n);
25     memset(c,0,sizeof(c));
26     for(int i=1;i<=m;i++)
27         for(int j=1;j<=n;j++)
28         scanf("%d",&a[i][j]);
29     for(int i=1;i<=m;i++)
30     {
31         for(int j=1;j<=n;j++)
32         {
33             int jishu=0;
34             int exm=a[1][j];
35             if(exm)
36                 jishu++;
37             for(int k=2;k<=m;k++){
38                 exm&=a[k][j];
39                 if(a[k][j])
40                     jishu++;
41                 }
42                 for(int k=1;k<=n;k++){
43                 exm&=a[i][k];
44                 if(a[i][k])
45                     jishu++;
46                 }
47             if(jishu==(n+m))
48             {
49                  for(int k=1;k<=m;k++)
50                     c[k][j]=1;
51                 for(int k=1;k<=n;k++)
52                     c[i][k]=1;
53             }
54             b[i][j]=exm;
55         }
56     }
57      for(int i=1;i<=m;i++)
58         for(int j=1;j<=n;j++){
59             if(a[i][j]&&c[i][j]==0)
60             {
61                 cout<<"NO"<<endl;
62                 return 0;
63             }
64         }
65     cout<<"YES"<<endl;
66     for(int i=1;i<=m;i++){
67         for(int j=1;j<=n;j++){
68                 cout<<b[i][j]<<" ";
69         }
70         cout<<endl;
71     }
72     return 0;
73 }
C. Palindrome Transformation
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Nam is playing with a string on his computer. The string consists of n lowercase English letters. It is meaningless, so Nam decided to make the string more beautiful, that is to make it be a palindrome by using 4 arrow keys: left, right, up, down.

There is a cursor pointing at some symbol of the string. Suppose that cursor is at position i (1 ≤ i ≤ n, the string uses 1-based indexing) now. Left and right arrow keys are used to move cursor around the string. The string is cyclic, that means that when Nam presses left arrow key, the cursor will move to position i - 1 if i > 1 or to the end of the string (i. e. position n) otherwise. The same holds when he presses the right arrow key (if i = n, the cursor appears at the beginning of the string).

When Nam presses up arrow key, the letter which the text cursor is pointing to will change to the next letter in English alphabet (assuming that alphabet is also cyclic, i. e. after 'z' follows 'a'). The same holds when he presses the down arrow key.

Initially, the text cursor is at position p.

Because Nam has a lot homework to do, he wants to complete this as fast as possible. Can you help him by calculating the minimum number of arrow keys presses to make the string to be a palindrome?

Input

The first line contains two space-separated integers n (1 ≤ n ≤ 105) and p (1 ≤ p ≤ n), the length of Nam's string and the initial position of the text cursor.

The next line contains n lowercase characters of Nam's string.

Output

Print the minimum number of presses needed to change string into a palindrome.

Examples
input
8 3
aeabcaez
output
6
Note

A string is a palindrome if it reads the same forward or reversed.

In the sample test, initial Nam's string is:  (cursor position is shown bold).

In optimal solution, Nam may do 6 following steps:

The result, , is now a palindrome.

题意:  长度与n的小写字母字符串a 起始点为第p个字母 通过4种改变方式最终使得a为回文串

问最后需要多少步? L:左移一位 R:右移一位U:当前字符增加1 D:当前字符减少1  注意‘a’与‘z’相差1 也就是把a~z作为环状

题解:  对于需要多少步骤 首先统计一遍处于对应位置的每个字符 若不相同 则需要多少步骤才能相同

假设某个对应位置的两个字符char1<char2 需要min(char2-char1,char1+26-char2)步骤才能相同

与此同时记录左部分的l1,r1与右部分的l2,r2  代表需要变化的字符的最小位置与最大位置 之后判断p在哪一部分 与l,r的相对位置 使得移动距离最小

注意若字符串a均为同一种字符的数据

 1 /******************************
 2 code by drizzle
 3 blog: www.cnblogs.com/hsd-/
 4 ^ ^    ^ ^
 5  O      O
 6 ******************************/
 7 #include<bits/stdc++.h>
 8 #include<iostream>
 9 #include<cstring>
10 #include<cstdio>
11 #include<map>
12 #include<algorithm>
13 #include<queue>
14 #define LL __int64
15 #define pii pair<int,int>
16 #define MP make_pair
17 using namespace std;
18 int n,p;
19 char a[100005];
20 int main()
21 {
22     scanf("%d %d",&n,&p);
23     p--;
24     getchar();
25     scanf("%s",a);
26     int ans=0;
27     int l1=-1,r1=-1,l2=-1,r2=-1;
28     int flag=0;
29     for(int i=0;i<n/2;i++)
30     {
31         if(a[i]!=a[n-i-1])
32         {
33             if(flag==0)
34             {
35                 l1=r1=i;
36                 l2=r2=n-i-1;
37                 flag=1;
38             }
39             else
40             {
41                 r1=i;
42                 l2=n-i-1;
43             }
44         char exm1=a[i],exm2=a[n-i-1],zhong;
45         if(exm1>exm2)
46         {
47             zhong=exm1;
48             exm1=exm2;
49             exm2=zhong;
50         }
51         ans=ans+min(exm2-exm1,exm1+26-exm2);
52         }
53     }
54     if(p<=(n-1)/2)
55     {
56        if(flag)
57        {
58        if(p<=l1)
59        ans=ans+(l1-p)+r1-l1;
60        else
61        if(p>=r1)
62        ans=ans+(p-r1)+r1-l1;
63        else
64        ans=ans+r1-l1+min(p-l1,r1-p);
65        }
66     }
67     else
68     {
69         if(flag){
70        if(p<=l2)
71        ans=ans+(l2-p)+r2-l2;
72        else
73        if(p>=r2)
74        ans=ans+(p-r2)+r2-l2;
75        else
76        ans=ans+r2-l2+min(p-l2,r2-p);
77        }
78     }
79     cout<<ans<<endl;
80     return 0;
81 }
原文地址:https://www.cnblogs.com/hsd-/p/5876662.html