CF981D.Bookshelves
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Mr Keks is a typical white-collar in Byteland.
He has a bookshelf in his office with some books on it, each book has an integer positive price.
Mr Keks defines the value of a shelf as the sum of books prices on it.
Miraculously, Mr Keks was promoted and now he is moving into a new office.
He learned that in the new office he will have not a single bookshelf, but exactly k bookshelves. He decided that the beauty of the k shelves is the bitwise AND of the values of all the shelves.
He also decided that he won't spend time on reordering the books, so he will place several first books on the first shelf, several next books on the next shelf and so on. Of course, he will place at least one book on each shelf. This way he will put all his books on k shelves in such a way that the beauty of the shelves is as large as possible. Compute this maximum possible beauty.
输入格式
The first line contains two integers n and k ( 1≤k≤n≤50 ) — the number of books and the number of shelves in the new office.
The second line contains n integers a1,a2,…an , ( 0<ai<250 ) — the prices of the books in the order they stand on the old shelf.
输出格式
Print the maximum possible beauty of k shelves in the new office.
输入输出样例
输入#1
10 4 9 14 28 1 7 13 15 29 2 31
输出#1
24
输入#2
7 3 3 14 15 92 65 35 89
输出#2
64
说明/提示
In the first example you can split the books as follows:
$$(9 + 14 + 28 + 1 + 7) \& (13 + 15) \& (29 + 2) \& (31) = 24. $$ </p><p>In the second example you can split the books as follows:</p><p> $$ (3 + 14 + 15 + 92) \& (65) \& (35 + 89) = 64. $$