First Training

B

B - Local Extrema

 CodeForces - 888A 

You are given an array a. Some element of this array ai is a local minimum iff it is strictly less than both of its neighbours (that is, ai < ai - 1 and ai < ai + 1). Also the element can be called local maximum iff it is strictly greater than its neighbours (that is, ai > ai - 1 and ai > ai + 1). Since a1 and an have only one neighbour each, they are neither local minima nor local maxima.

An element is called a local extremum iff it is either local maximum or local minimum. Your task is to calculate the number of local extrema in the given array.

Input

The first line contains one integer n (1 ≤ n ≤ 1000) — the number of elements in array a.

The second line contains n integers a1a2, ..., an (1 ≤ ai ≤ 1000) — the elements of array a.

Output

Print the number of local extrema in the given array.

Examples

Input
3
1 2 3
Output
0
Input
4
1 5 2 5
Output
2
签到题1
#include<bits/stdc++.h>
using namespace std;
const int N=1E4+7;
int arr[N];
int main(){
    int n;
    cin>>n;
    for(int i=1;i<=n;i++)    scanf("%d",&arr[i]);
    int ans=0;
    for(int i=2;i<=n-1;i++){
        if(arr[i]>arr[i-1]&&arr[i]>arr[i+1]||arr[i]<arr[i-1]&&arr[i]<arr[i+1])    ans++;
    }
    cout<<ans<<endl; 
    return 0;
}

D - Buggy Robot

签到题2  由于机器人最终在起点,所以L=R,  U=D ,答案为2*min(L,R)+2*min(U,D)

#include<bits/stdc++.h>
using namespace std;
const int N=1E3+7;
int L=0,R=0,U=0,D=0;
int main(){
    int n;
    cin>>n;
    string x;
    cin>>x;
    for(int i=0;i<n;i++){
        if(x[i]=='L') L++;
        else if(x[i]=='R') R++;
        else if(x[i]=='U') U++;
        else if(x[i]=='D') D++;
    }
    int ans1=min(L,R);
    int ans2=min(U,D);
    cout<<2*ans1+2*ans2<<endl;
    return 0;
}

E - K-Dominant Character

题解:记录字符的出现位置,对于相同的字符,间隔去最大值(不要忘了边界),不同字符去最小

#include<bits/stdc++.h>
using namespace std;
const int N=1E5+7;
const int M=1e9+7;

char arr[N];
int brr[N];
vector<int >ve[N];
bool mark[N];

int main(){
    memset(mark,0,sizeof(mark));
    scanf("%s",arr+1);
    int n=strlen(arr+1);
    int pos=0;
    for(int i=1;i<=n;i++){
        int y=arr[i];
        if(!mark[y]) {
            mark[y]=1;
            brr[pos++]=y;
        }
        ve[y].push_back(i);
    }
    int ans=M,k;
    for(int i=0;i<pos;i++){
        int y=brr[i];
        int x=ve[y].size();
        if(x==1){
            k=max(ve[y][0],n-ve[y][0]+1);
        }
        else {
            for(int j=0;j<x;j++){
                if(j==0) k=ve[y][j];
                else {
                    k=max(k,ve[y][j]-ve[y][j-1]);
                }
            }
            k=max(k,n-ve[y][x-1]+1);
        }
        ans=min(ans,k);
    }
    cout<<ans<<endl;
    return 0;
}

G - Almost Identity Permutations

A permutation p of size n is an array such that every integer from 1 to n occurs exactly once in this array.

Let's call a permutation an almost identity permutation iff there exist at least n - k indices i (1 ≤ i ≤ n) such that pi = i.

Your task is to count the number of almost identity permutations for given numbers n and k.

Input

The first line contains two integers n and k (4 ≤ n ≤ 1000, 1 ≤ k ≤ 4).

Output

Print the number of almost identity permutations for given n and k.

Examples

Input
4 1
Output
1
Input
4 2
Output
7
Input
5 3
Output
31
Input
5 4
Output
76
当K==1 的时候,直接输出1,
当K=2的时候哦 答案为c(n,2);
当k=3的时候答案为c(n,3)*2;(这里的2是怎么来的?由于我们选了3个数,即这3个数不能再原位置,比如1,2,3这三个数,要是其下标不等于其值,只能是3 1 2或者2 3 1共两种)
当k==4的时候答案为c(n,4)*(9)(这里的9与上同理)
然后在累加,即 k=2的最终结果等于k=1+k=2
k=3的最终结果等于k=3 + k=2 + k=1


#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    ll n,k;
    cin>>n>>k;
    ll ans=0;
    for(int i=2;i<=k;i++){
        if(i==2){
            ans+=n*(n-1)/2;
        }
        else if(i==3){
            ans+=n*(n-1)*(n-2)/6 *2;
        }
        else if(i==4){
            ans+=n*(n-1)*(n-2)*(n-3)/24 *9;
        }
    }
    ans++;
    cout<<ans<<endl;
    return 0;
} 

H - Alyona and Spreadsheet

During the lesson small girl Alyona works with one famous spreadsheet computer program and learns how to edit tables.

Now she has a table filled with integers. The table consists of n rows and m columns. By ai, j we will denote the integer located at the i-th row and the j-th column. We say that the table is sorted in non-decreasing order in the column j if ai, j ≤ ai + 1, j for all i from 1 to n - 1.

Teacher gave Alyona k tasks. For each of the tasks two integers l and r are given and Alyona has to answer the following question: if one keeps the rows from l to r inclusive and deletes all others, will the table be sorted in non-decreasing order in at least one column? Formally, does there exist such j that ai, j ≤ ai + 1, j for all i from l to r - 1 inclusive.

Alyona is too small to deal with this task and asks you to help!

Input

The first line of the input contains two positive integers n and m (1 ≤ n·m ≤ 100 000) — the number of rows and the number of columns in the table respectively. Note that your are given a constraint that bound the product of these two integers, i.e. the number of elements in the table.

Each of the following n lines contains m integers. The j-th integers in the i of these lines stands for ai, j (1 ≤ ai, j ≤ 109).

The next line of the input contains an integer k (1 ≤ k ≤ 100 000) — the number of task that teacher gave to Alyona.

The i-th of the next k lines contains two integers li and ri (1 ≤ li ≤ ri ≤ n).

Output

Print "Yes" to the i-th line of the output if the table consisting of rows from li to ri inclusive is sorted in non-decreasing order in at least one column. Otherwise, print "No".

Example

Input
5 4
1 2 3 5
3 1 3 2
4 5 2 3
5 5 3 2
4 4 3 4
6
1 1
2 5
4 5
3 5
1 3
1 5
Output
Yes
No
Yes
Yes
Yes
No

Note

In the sample, the whole table is not sorted in any column. However, rows 1–3 are sorted in column 1, while rows 4–5 are sorted in column 3.

题解:我们开一个数组d,用来记录存在某一列使得第从l行到 r 行,该列元素非递减排序,比如说d[a]=b即从b行到a行存在某列为非递减列,这里的b一定是满足条件里最小的那一个

#include<bits/stdc++.h>
using namespace std;
const int N=1e5+7;
const int INF=1e9+7;
int d[N],maxx[N],ans[N];
int main(){
    int n,m;
    cin>>n>>m;
    int a;
    
    for(int i=1;i<=n;i++){
        int minn=INF;
        for(int j=1;j<=m;j++){
            scanf("%d",&a);
            if(i==1) {
                maxx[j]=a;
                d[j]=i;
            }
            else {
                if(a<maxx[j]) d[j]=i;
                maxx[j]=a;
            }
            minn=min(minn,d[j]);
        }
        ans[i]=minn; 
    }
    
    int k;
    cin>>k;
    while(k--){
        int l,r;
        scanf("%d%d",&l,&r);
        if(l>=ans[r]) puts("Yes");
        else puts("No");
    }
    return 0;
}

I - Shell Game

Bomboslav likes to look out of the window in his room and watch lads outside playing famous shell game. The game is played by two persons: operator and player. Operator takes three similar opaque shells and places a ball beneath one of them. Then he shuffles the shells by swapping some pairs and the player has to guess the current position of the ball.

Bomboslav noticed that guys are not very inventive, so the operator always swaps the left shell with the middle one during odd moves (first, third, fifth, etc.) and always swaps the middle shell with the right one during even moves (second, fourth, etc.).

Let's number shells from 0 to 2 from left to right. Thus the left shell is assigned number 0, the middle shell is 1 and the right shell is 2. Bomboslav has missed the moment when the ball was placed beneath the shell, but he knows that exactly n movements were made by the operator and the ball was under shell x at the end. Now he wonders, what was the initial position of the ball?

Input

The first line of the input contains an integer n (1 ≤ n ≤ 2·109) — the number of movements made by the operator.

The second line contains a single integer x (0 ≤ x ≤ 2) — the index of the shell where the ball was found after n movements.

Output

Print one integer from 0 to 2 — the index of the shell where the ball was initially placed.

Examples

Input
4
2
Output
1
Input
1
1
Output
0

Note

In the first sample, the ball was initially placed beneath the middle shell and the operator completed four movements.

  1. During the first move operator swapped the left shell and the middle shell. The ball is now under the left shell.
  2. During the second move operator swapped the middle shell and the right one. The ball is still under the left shell.
  3. During the third move operator swapped the left shell and the middle shell again. The ball is again in the middle.
  4. Finally, the operators swapped the middle shell and the right shell. The ball is now beneath the right shell

找规律,,6组一循环

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

int main(){
    int n;
    cin>>n;
    int x;
    cin>>x;
    n=n%6;
    if(n==1){
        if(x==0) cout<<1<<endl;
        else if(x==1) cout<<0<<endl;
        else if(x==2) cout<<2<<endl;
    }
    else if(n==2){
        if(x==0) cout<<1<<endl;
        else if(x==1) cout<<2<<endl;
        else if(x==2) cout<<0<<endl;
    }
    else if(n==3){
        if(x==0) cout<<2<<endl;
        else if(x==1) cout<<1<<endl;
        else if(x==2) cout<<0<<endl;
        
    }
    else if(n==4){
        if(x==0)    cout<<2<<endl;
        if(x==1)    cout<<0<<endl;
        if(x==2)    cout<<1<<endl;
    }
    else if(n==5){
        if(x==0)    cout<<0<<endl;
        if(x==1)    cout<<2<<endl;
        if(x==2)    cout<<1<<endl;
    }
    else if(n==0){
        cout<<x<<endl;
    }
    return 0;
} 

K - Cloud of Hashtags

Vasya is an administrator of a public page of organization "Mouse and keyboard" and his everyday duty is to publish news from the world of competitive programming. For each news he also creates a list of hashtags to make searching for a particular topic more comfortable. For the purpose of this problem we define hashtag as a string consisting of lowercase English letters and exactly one symbol '#' located at the beginning of the string. The length of the hashtag is defined as the number of symbols in it without the symbol '#'.

The head administrator of the page told Vasya that hashtags should go in lexicographical order (take a look at the notes section for the definition).

Vasya is lazy so he doesn't want to actually change the order of hashtags in already published news. Instead, he decided to delete some suffixes (consecutive characters at the end of the string) of some of the hashtags. He is allowed to delete any number of characters, even the whole string except for the symbol '#'. Vasya wants to pick such a way to delete suffixes that the total number of deleted symbols is minimum possible. If there are several optimal solutions, he is fine with any of them.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 500 000) — the number of hashtags being edited now.

Each of the next n lines contains exactly one hashtag of positive length.

It is guaranteed that the total length of all hashtags (i.e. the total length of the string except for characters '#') won't exceed 500 000.

Output

Print the resulting hashtags in any of the optimal solutions.

Examples

Input
3
#book
#bigtown
#big
Output
#b
#big
#big
Input
3
#book
#cool
#cold
Output
#book
#co
#cold
Input
4
#car
#cart
#art
#at
Output
#
#
#art
#at
Input
3
#apple
#apple
#fruit
Output
#apple
#apple
#fruit

Note

Word a1, a2, ..., am of length m is lexicographically not greater than word b1, b2, ..., bk of length k, if one of two conditions hold:

  • at first position i, such that ai ≠ bi, the character ai goes earlier in the alphabet than character bi, i.e. a has smaller character than b in the first position where they differ;
  • if there is no such position i and m ≤ k, i.e. the first word is a prefix of the second or two words are equal.

The sequence of words is said to be sorted in lexicographical order if each word (except the last one) is lexicographically not greater than the next word.

For the words consisting of lowercase English letters the lexicographical order coincides with the alphabet word order in the dictionary.

According to the above definition, if a hashtag consisting of one character '#' it is lexicographically not greater than any other valid hashtag. That's why in the third sample we can't keep first two hashtags unchanged and shorten the other two.

到着来,用一个string  记录上一个字符串,然后比较,如果比y小的话,直接入栈,否则就 拆分后入栈

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

vector<string >ve;
stack<string >st;

int main(){
    
    int n;
    cin>>n;
    
    for(int i=1;i<=n;i++){
        string x;
        cin>>x;
        ve.push_back(x);
    }
    string y;
    
    for(int i=n-1;i>=0;i--){
        if(i==n-1) {
            st.push(ve[i]);
            y=ve[i];
        }
        else {
            
            if(ve[i]<=y){
                st.push(ve[i]);
                y=ve[i];
            }
            
            else{
                string xx=ve[i];
                string xxx="";
                int ll=y.size();
                
                for(int j=0;j<ll;j++){
                    if(xx[j]>y[j]) {
                        break;
                    }
                    else {
                        xxx+=xx[j];
                    }
                }
                st.push(xxx);
                y=xxx;
            }
        }
    }
    
    while(st.size()){
        cout<<st.top()<<endl;
        st.pop();
    }
    return 0;
} 

L - Game of Credit Cards

After the fourth season Sherlock and Moriary have realized the whole foolishness of the battle between them and decided to continue their competitions in peaceful game of Credit Cards.

Rules of this game are simple: each player bring his favourite n-digit credit card. Then both players name the digits written on their cards one by one. If two digits are not equal, then the player, whose digit is smaller gets a flick (knock in the forehead usually made with a forefinger) from the other player. For example, if n = 3, Sherlock's card is 123 and Moriarty's card has number 321, first Sherlock names 1 and Moriarty names 3 so Sherlock gets a flick. Then they both digit 2 so no one gets a flick. Finally, Sherlock names 3, while Moriarty names 1 and gets a flick.

Of course, Sherlock will play honestly naming digits one by one in the order they are given, while Moriary, as a true villain, plans to cheat. He is going to name his digits in some other order (however, he is not going to change the overall number of occurences of each digit). For example, in case above Moriarty could name 1, 2, 3 and get no flicks at all, or he can name 2, 3 and 1 to give Sherlock two flicks.

Your goal is to find out the minimum possible number of flicks Moriarty will get (no one likes flicks) and the maximum possible number of flicks Sherlock can get from Moriarty. Note, that these two goals are different and the optimal result may be obtained by using different strategies.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 1000) — the number of digits in the cards Sherlock and Moriarty are going to use.

The second line contains n digits — Sherlock's credit card number.

The third line contains n digits — Moriarty's credit card number.

Output

First print the minimum possible number of flicks Moriarty will get. Then print the maximum possible number of flicks that Sherlock can get from Moriarty.

Examples

Input
3
123
321
Output
0
2
Input
2
88
00
Output
2
0

Note

First sample is elaborated in the problem statement. In the second sample, there is no way Moriarty can avoid getting two flicks.

//谁小谁获获得得轻弹
#include<bits/stdc++.h>
using namespace std;
int main(){
    int n;
    cin>>n;
    string s,m;
    cin>>s;
    cin>>m;
    sort(s.begin(),s.end());
    sort(m.begin(),m.end());
    int pos=0;
    int a1=0,ans1=n;
    for(int i=0;i<n;i++){
        for(int j=pos;j<n;j++){
            if(s[i]<=m[j]){
                pos=j+1;
                a1++;
                break;
            }
        }
    }
    ans1-=a1;
    int a2=0,ans2=n;
    pos=0; 
    for(int i=0;i<n;i++){
        for(int j=pos;j<n;j++){
            if(s[i]<m[j]){
                pos=j+1;
                a2++;
                break;
            }
        }
    }
    cout<<ans1<<endl;
    cout<<a2<<endl;
    return 0;
} 
原文地址:https://www.cnblogs.com/Accepting/p/11573055.html