线段覆盖 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 10000……
线段覆盖 (C++代码)
摘要:解题思路:这我也是服了,本来准备写一些什么线段树啊区间维护啊之类的东西,后来想了想决定先暴力看看数据错误情况先,结果暴力直接过了。参考代码:#include<bits/stdc++.h>
#defi……
线段覆盖 (C++代码)
摘要:解题思路:模拟法注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
int arr[100000];
int main()
{
……