您的位置:首页 > 其它

Codeforces Round #316 (Div. 2)

2015-10-10 20:28 375 查看

A. Elections

The country of Byalechinsk is running elections involving n candidates. The country consists of m cities. We know how many people in each city voted for each candidate.

The electoral system in the country is pretty unusual. At the first stage of elections the votes are counted for each city: it is assumed that in each city won the candidate who got the highest number of votes in this city, and if several candidates got the maximum number of votes, then the winner is the one with a smaller index.

At the second stage of elections the winner is determined by the same principle over the cities: the winner of the elections is the candidate who won in the maximum number of cities, and among those who got the maximum number of cities the winner is the one with a smaller index.

Determine who will win the elections.

Input

The first line of the input contains two integers n, m (1 ≤ n, m ≤ 100) — the number of candidates and of cities, respectively.

Each of the next m lines contains n non-negative integers, the j-th number in the i-th line aij (1 ≤ j ≤ n, 1 ≤ i ≤ m, 0 ≤ aij ≤ 109) denotes the number of votes for candidate j in city i.

It is guaranteed that the total number of people in all the cities does not exceed 109.

Output

Print a single number — the index of the candidate who won the elections. The candidates are indexed starting from one.

Sample test(s)

input

3 3

1 2 3

2 3 1

1 2 1

output

2

input

3 4

10 10 3

5 1 6

2 2 2

1 5 7

output

1

Note

Note to the first sample test. At the first stage city 1 chosen candidate 3, city 2 chosen candidate 2, city 3 chosen candidate 2. The winner is candidate 2, he gained 2 votes.

Note to the second sample test. At the first stage in city 1 candidates 1 and 2 got the same maximum number of votes, but candidate 1 has a smaller index, so the city chose candidate 1. City 2 chosen candidate 3. City 3 chosen candidate 1, due to the fact that everyone has the same number of votes, and 1 has the smallest index. City 4 chosen the candidate 3. On the second stage the same number of cities chose candidates 1 and 3. The winner is candidate 1, the one with the smaller index.

Solution

水题。注意n=1。

Code

#include<bits/stdc++.h>
using namespace std;

const int N = 1111;
int n, m, a

, cnt
;

int main(){
scanf("%d%d", &m, &n);
memset(cnt, 0, sizeof(cnt));
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
scanf("%d", &a[i][j]);

for (int i = 1; i <= n; i++){
int _max = -1, maxnum = 0;
for (int j = 1; j <= m; j++)
if (a[i][j] > _max){
_max = a[i][j]; maxnum = j;
}
cnt[maxnum]++;
}

int _max = 0, maxnum = 0;
for (int i = 1; i <= m; i++)
if (cnt[i] > _max){
_max = cnt[i]; maxnum = i;
}
printf("%d\n", maxnum);

return 0;
}


B. Simple Game

One day Misha and Andrew were playing a very simple game. First, each player chooses an integer in the range from 1 to n. Let’s assume that Misha chose number m, and Andrew chose number a.

Then, by using a random generator they choose a random integer c in the range between 1 and n (any integer from 1 to n is chosen with the same probability), after which the winner is the player, whose number was closer to c. The boys agreed that if m and a are located on the same distance from c, Misha wins.

Andrew wants to win very much, so he asks you to help him. You know the number selected by Misha, and number n. You need to determine which value of a Andrew must choose, so that the probability of his victory is the highest possible.

More formally, you need to find such integer a (1 ≤ a ≤ n), that the probability that is maximal, where c is the equiprobably chosen integer from 1 to n (inclusive).

Input

The first line contains two integers n and m (1 ≤ m ≤ n ≤ 109) — the range of numbers in the game, and the number selected by Misha respectively.

Output

Print a single number — such value a, that probability that Andrew wins is the highest. If there are multiple such values, print the minimum of them.

Sample test(s)

input

3 1

output

2

input

4 3

output

2

Note

In the first sample test: Andrew wins if c is equal to 2 or 3. The probability that Andrew wins is 2 / 3. If Andrew chooses a = 3, the probability of winning will be 1 / 3. If a = 1, the probability of winning is 0.

In the second sample test: Andrew wins if c is equal to 1 and 2. The probability that Andrew wins is 1 / 2. For other choices of a the probability of winning is less.

Solution

水题。a要么在m左边一个要么在m右边一个。

Code

#include<bits/stdc++.h>
using namespace std;
int n, m;
int main(){
scanf("%d%d", &n, &m);
if (n == 1){ printf("1\n"); return 0;}
int a1 = m - 1, a2 = m + 1;
if (n - m > a1) printf("%d\n", a2);
else printf("%d\n", a1);
return 0;
}


C. Replacement

Daniel has a string s, consisting of lowercase English letters and period signs (characters ‘.’). Let’s define the operation of replacement as the following sequence of steps: find a substring “..” (two consecutive periods) in string s, of all occurrences of the substring let’s choose the first one, and replace this substring with string “.”. In other words, during the replacement operation, the first two consecutive periods are replaced by one. If string s contains no two consecutive periods, then nothing happens.

Let’s define f(s) as the minimum number of operations of replacement to perform, so that the string does not have any two consecutive periods left.

You need to process m queries, the i-th results in that the character at position xi (1 ≤ xi ≤ n) of string s is assigned value ci. After each operation you have to calculate and output the value of f(s).

Help Daniel to process all queries.

Input

The first line contains two integers n and m (1 ≤ n, m ≤ 300 000) the length of the string and the number of queries.

The second line contains string s, consisting of n lowercase English letters and period signs.

The following m lines contain the descriptions of queries. The i-th line contains integer xi and ci (1 ≤ xi ≤ n, ci — a lowercas English letter or a period sign), describing the query of assigning symbol ci to position xi.

Output

Print m numbers, one per line, the i-th of these numbers must be equal to the value of f(s) after performing the i-th assignment.

Sample test(s)

input

10 3

.b..bz….

1 h

3 c

9 f

output

4

3

1

input

4 4

.cc.

2 .

3 .

2 a

1 a

output

1

3

1

1

Note

Note to the first sample test (replaced periods are enclosed in square brackets).

The original string is “.b..bz….”.

after the first query f(hb..bz….) = 4 (“hb[..]bz….”  →  “hb.bz[..]..”  →  “hb.bz[..].”  →  “hb.bz[..]”  →  “hb.bz.”)

after the second query f(hbс.bz….) = 3 (“hbс.bz[..]..”  →  “hbс.bz[..].”  →  “hbс.bz[..]”  →  “hbс.bz.”)

after the third query f(hbс.bz..f.) = 1 (“hbс.bz[..]f.”  →  “hbс.bz.f.”)

Note to the second sample test.

The original string is “.cc.”.

after the first query: f(..c.) = 1 (“[..]c.”  →  “.c.”)

after the second query: f(….) = 3 (“[..]..”  →  “[..].”  →  “[..]”  →  “.”)

after the third query: f(.a..) = 1 (“.a[..]”  →  “.a.”)

after the fourth query: f(aa..) = 1 (“aa[..]”  →  “aa.”)

Solution

对于每一次修改,决定ans变化的只有左右相邻的两个位置上字符种类的不同,讨论一下即可。

Code

#include<bits/stdc++.h>
using namespace std;
const int N = 333333;
int n, m, s
;
int main(){
scanf("%d%d", &n, &m); getchar();
for (int i = 1; i <= n; i++) scanf("%c", &s[i]);
int ans = 0;
for (int i = 1; i <= n; i++)
if (s[i] == '.' && s[i + 1] == '.') ans++;

while (m--){ getchar();
int x; scanf("%d", &x);
char  _ = getchar(), ch = getchar();
if (!((s[x] != '.' && ch != '.') || (s[x] == '.' && ch == '.'))){
if (x != 1 && x != n){
if (s[x - 1] != '.' && s[x] == '.' && s[x + 1] == '.') ans--;
if (s[x - 1] != '.' && s[x] != '.' && s[x + 1] == '.') ans++;
if (s[x - 1] == '.' && s[x] != '.' && s[x + 1] != '.') ans++;
if (s[x - 1] == '.' && s[x] != '.' && s[x + 1] == '.') ans += 2;
if (s[x - 1] == '.' && s[x] == '.' && s[x + 1] != '.') ans--;
if (s[x - 1] == '.' && s[x] == '.' && s[x + 1] == '.') ans -= 2;
}
if (x == 1){
if (s[x] != '.' && s[x + 1] == '.') ans++;
if (s[x] == '.' && s[x + 1] == '.') ans--;
}
if (x == n){
if (s[x - 1] == '.' && s[x] != '.') ans++;
if (s[x - 1] == '.' && s[x] == '.') ans--;
}
}
s[x] = ch;
printf("%d\n", ans);
}
return 0;
}


D. Tree Requests

Roman planted a tree consisting of n vertices. Each vertex contains a lowercase English letter. Vertex 1 is the root of the tree, each of the n - 1 remaining vertices has a parent in the tree. Vertex is connected with its parent by an edge. The parent of vertex i is vertex pi, the parent index is always less than the index of the vertex (i.e., pi < i).

The depth of the vertex is the number of nodes on the path from the root to v along the edges. In particular, the depth of the root is equal to 1.

We say that vertex u is in the subtree of vertex v, if we can get from u to v, moving from the vertex to the parent. In particular, vertex v is in its subtree.

Roma gives you m queries, the i-th of which consists of two numbers vi, hi. Let’s consider the vertices in the subtree vi located at depth hi. Determine whether you can use the letters written at these vertices to make a string that is a palindrome. The letters that are written in the vertexes, can be rearranged in any order to make a palindrome, but all letters should be used.

Input

The first line contains two integers n, m (1 ≤ n, m ≤ 500 000) — the number of nodes in the tree and queries, respectively.

The following line contains n - 1 integers p2, p3, …, pn — the parents of vertices from the second to the n-th (1 ≤ pi < i).

The next line contains n lowercase English letters, the i-th of these letters is written on vertex i.

Next m lines describe the queries, the i-th line contains two numbers vi, hi (1 ≤ vi, hi ≤ n) — the vertex and the depth that appear in the i-th query.

Output

Print m lines. In the i-th line print “Yes” (without the quotes), if in the i-th query you can make a palindrome from the letters written on the vertices, otherwise print “No” (without the quotes).

Sample test(s)

input

6 5

1 1 1 3 3

zacccd

1 1

3 3

4 1

6 1

1 2

output

Yes

No

Yes

Yes

Yes

Note

String s is a palindrome if reads the same from left to right and from right to left. In particular, an empty string is a palindrome.

Clarification for the sample test.

In the first query there exists only a vertex 1 satisfying all the conditions, we can form a palindrome “z”.

In the second query vertices 5 and 6 satisfy condititions, they contain letters “с” and “d” respectively. It is impossible to form a palindrome of them.

In the third query there exist no vertices at depth 1 and in subtree of 4. We may form an empty palindrome.

In the fourth query there exist no vertices in subtree of 6 at depth 1. We may form an empty palindrome.

In the fifth query there vertices 2, 3 and 4 satisfying all conditions above, they contain letters “a”, “c” and “c”. We may form a palindrome “cac”.

Solution

本题矛盾在于子树要求DFS序,层次要求BFS序。

我们这样处理,对于BFS序,一个子树的某个深度的结点一定在一层,我们二分来找到这一段。

处理能否构成回文串的关键在于每个字母个数的奇偶性,随意记0/1表示奇/偶,然后异或前缀和。

Code

#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for(int i = (a); i <= (b); i++)
#define red(i, a, b) for(int i = (a); i >= (b); i--)

int N, M;
const int SIZE = 500005;
int l[SIZE], r[SIZE];
vector <int> pos[SIZE], num[SIZE], g[SIZE];
char s[SIZE];
int no = 1;

void dfs(int u, int d) {
l[u] = no++;
pos[d].push_back(l[u]);
num[d].push_back(num[d].back() ^ (1 << (s[u] - 'a')));
for(int i = 0; i < g[u].size(); i++) {
dfs(g[u][i], d + 1);
}
r[u] = no;
}

int lowbit(int k) { return k & (-k); }

int popCount(int n) {
int cnt = 0;
while(n) {
cnt++;
n -= lowbit(n);
}
return cnt;
}

int main() {
scanf("%d%d", &N, &M);
rep(i, 2, N) {
int n;
scanf("%d", &n);
g
.push_back(i);
}
scanf("%s", s + 1);
rep(i, 1, N) {
num[i].push_back(0);
pos[i].push_back(0);
}
dfs(1, 1);
while(M--) {
int x, d;
scanf("%d%d", &x, &d);
int st, en;
st = lower_bound(pos[d].begin(), pos[d].end(), l[x]) - pos[d].begin() - 1;
en = lower_bound(pos[d].begin(), pos[d].end(), r[x]) - pos[d].begin() - 1;
if (popCount(num[d][en] ^ num[d][st]) <= 1) puts("Yes");
else puts("No");
}
return 0;
}


E

E的题解大家可以戳这个人

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