CF863F.Almost Permutation
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Recently Ivan noticed an array a while debugging his code. Now Ivan can't remember this array, but the bug he was trying to fix didn't go away, so Ivan thinks that the data from this array might help him to reproduce the bug.
Ivan clearly remembers that there were n elements in the array, and each element was not less than 1 and not greater than n . Also he remembers q facts about the array. There are two types of facts that Ivan remembers:
- 1 li ri vi — for each x such that li<=x<=ri ax>=vi ;
- 2 li ri vi — for each x such that li<=x<=ri ax<=vi .
Also Ivan thinks that this array was a permutation, but he is not so sure about it. He wants to restore some array that corresponds to the q facts that he remembers and is very similar to permutation. Formally, Ivan has denoted the cost of array as follows:
, where cnt(i) is the number of occurences of i in the array.
Help Ivan to determine minimum possible cost of the array that corresponds to the facts!
输入格式
The first line contains two integer numbers n and q ( 1<=n<=50 , 0<=q<=100 ).
Then q lines follow, each representing a fact about the array. i -th line contains the numbers ti , li , ri and vi for i -th fact ( 1<=ti<=2 , 1<=li<=ri<=n , 1<=vi<=n , ti denotes the type of the fact).
输出格式
If the facts are controversial and there is no array that corresponds to them, print -1. Otherwise, print minimum possible cost of the array.
输入输出样例
输入#1
3 0
输出#1
3
输入#2
3 1 1 1 3 2
输出#2
5
输入#3
3 2 1 1 3 2 2 1 3 2
输出#3
9
输入#4
3 2 1 1 3 2 2 1 3 1
输出#4
-1