CF1010E.Store
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Natasha was already going to fly back to Earth when she remembered that she needs to go to the Martian store to buy Martian souvenirs for her friends.
It is known, that the Martian year lasts xmax months, month lasts ymax days, day lasts zmax seconds. Natasha also knows that this store works according to the following schedule: 2 months in a year were selected: xl and xr ( 1≤xl≤xr≤xmax ), 2 days in a month: yl and yr ( 1≤yl≤yr≤ymax ) and 2 seconds in a day: zl and zr ( 1≤zl≤zr≤zmax ). The store works at all such moments (month x , day y , second z ), when simultaneously xl≤x≤xr , yl≤y≤yr and zl≤z≤zr .
Unfortunately, Natasha does not know the numbers xl,xr,yl,yr,zl,zr .
One Martian told Natasha: "I went to this store (n+m) times. n times of them it was opened, and m times — closed." He also described his every trip to the store: the month, day, second of the trip and whether the store was open or closed at that moment.
Natasha can go to the store k times. For each of them, determine whether the store at the time of the trip is open, closed, or this information is unknown.
输入格式
The first line contains 6 integers xmax , ymax , zmax , n , m , k ( 1≤xmax,ymax,zmax≤105 , 1≤n≤105 , 0≤m≤105 , 1≤k≤105 ) — number of months in a year, days in a month, seconds in a day, times when the store (according to a Martian) was opened, when it was closed and Natasha's queries.
The i -th of the next n lines contains 3 integers xi , yi , zi ( 1≤xi≤xmax , 1≤yi≤ymax , 1≤zi≤zmax ) — month, day and second of i -th time, when the store, according to the Martian, was opened.
The i -th of the next m lines contains 3 integers xi , yi , zi ( 1≤xi≤xmax , 1≤yi≤ymax , 1≤zi≤zmax ) — month, day and second of i -th time, when the store, according to the Martian, was closed.
The i -th of the next k lines contains 3 integers xi , yi , zi ( 1≤xi≤xmax , 1≤yi≤ymax , 1≤zi≤zmax ) — month, day and second of i -th Natasha's query.
输出格式
If the Martian was mistaken and his information about when the store is open and when it is closed is inconsistent, print a single line "INCORRECT" (without quotes).
Otherwise, print the first line "CORRECT" (without quotes). Next output k lines: in i -th of them, output an answer to i -th Natasha's query: "OPEN" (without quotes), if the store was opened at the moment of this query, "CLOSED" (without quotes), if it was closed, or "UNKNOWN" (without quotes), if this information can not be determined on the basis of available data.
输入输出样例
输入#1
10 10 10 3 1 3 2 6 2 4 2 4 6 4 6 9 9 9 3 3 3 10 10 10 8 8 8
输出#1
CORRECT OPEN CLOSED UNKNOWN
输入#2
10 10 10 1 1 1 2 5 7 2 5 7 8 9 10
输出#2
INCORRECT
说明/提示
Consider the first test case.
There are 10 months in a year, 10 days in a month, and 10 seconds in a day.
The store was opened in 3 moments:
- month 2 , day 6 , second 2 ;
- month 4 , day 2 , second 4 ;
- month 6 , day 4 , second 6 .
The store was closed at the time: month 9 , day 9 , second 9 .
Queries:
- month 3 , day 3 , second 3 — open ("OPEN") (since the store opens no later than month 2 , day 2 , second 2 and closes no earlier than in month 6 , day 6 , second 6 );
- month 10 , day 10 , second 10 — closed ("CLOSED") (since it is closed even in the month 9 , day 9 , second 9 );
- month 8 , day 8 , second 8 — unknown ("UNKNOWN") (because the schedule in which the store is open at this moment exists, and the schedule in which the store is closed at this moment exists as well).
In the second test case, the store was closed and opened at the same time — contradiction ("INCORRECT").