CodeForces 413A Data Recovery

来源:互联网 发布:淘宝无法举证 编辑:程序博客网 时间:2024/06/05 15:24
A. Data Recovery
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Not so long ago company R2 bought company R1 and consequently, all its developments in the field of multicore processors. Now the R2 laboratory is testing one of the R1 processors.

The testing goes in n steps, at each step the processor gets some instructions, and then its temperature is measured. The head engineer in R2 is keeping a report record on the work of the processor: he writes down the minimum and the maximum measured temperature in his notebook. His assistant had to write down all temperatures into his notebook, but (for unknown reasons) he recorded onlym.

The next day, the engineer's assistant filed in a report with all the m temperatures. However, the chief engineer doubts that the assistant wrote down everything correctly (naturally, the chief engineer doesn't doubt his notes). So he asked you to help him. Given numbersn, m,min, max and the list ofm temperatures determine whether you can upgrade the set ofm temperatures to the set of n temperatures (that is add n - m temperatures), so that the minimum temperature wasmin and the maximum one was max.

Input

The first line contains four integers n, m, min, max(1 ≤ m < n ≤ 100; 1 ≤ min < max ≤ 100). The second line containsm space-separated integers ti (1 ≤ ti ≤ 100) — the temperatures reported by the assistant.

Note, that the reported temperatures, and the temperatures you want to add can contain equal temperatures.

Output

If the data is consistent, print 'Correct' (without the quotes). Otherwise, print 'Incorrect' (without the quotes).

Sample test(s)
Input
2 1 1 21
Output
Correct
Input
3 1 1 32
Output
Correct
Input
2 1 1 32
Output
Incorrect
Note

In the first test sample one of the possible initial configurations of temperatures is [1, 2].

In the second test sample one of the possible initial configurations of temperatures is [2, 1, 3].

In the third test sample it is impossible to add one temperature to obtain the minimum equal to 1 and the maximum equal to 3.

#include<iostream>#include<algorithm>using namespace std;int main(){    int n,m,mymax,mymin,num[110],x;    while(cin>>n>>m>>mymin>>mymax){        for(int i=0;i<m;i++){            cin>>num[i];        }        sort(num,num+m);if(num[0]<mymin||num[m-1]>mymax){cout<<"Incorrect"<<endl;continue;}x=2;if(mymax==mymin){            x--;        }        if(num[0]==mymin){            x--;        }if(num[m-1]==mymax){            x--;}if(x<=n-m){            cout<<"Correct"<<endl;}else{            cout<<"Incorrect"<<endl;}    }    return 0;}


0 0
原创粉丝点击