input:
5 1
1 2 2 3 4
2
output:
3
当然,如果打暴力的话这个 hack 是没用的。
所以给了一个 hack 程序
#include <bits/stdc++.h>
using namespace std;
int main() {
freopen("6.in", "w", stdout);
ios::sync_with_stdio(false);
ios_base::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int n = 1000000, q = 1000000;
cout << n << ' ' << q << endl;
cout << "1 1 4 5 1 4";
n -= 6;
for (int i = 1; i <= n; i += 2)
cout << ' ' << i << ' ' << i;
cout << endl;
for (int i = 1, j = 1; j <= q; j++, i += 2) {
cout << i << endl;
}
return 0;
}
共 10 条回复
@Wind_Rises 我还得改我们学校的题,老师要检查我们的改题情况。。。
基础扎实的话 可以去尝试L2的题目
嘻嘻
哈哈哈哈之前没过
@Wind_Rises 过了
之前数据都是比较小的 所以我额外添加15组极端数据 你好像没过
@root @CPP
已经添加
而且可以卡掉我第一次 AC 的代码。
@root