摘要:
#include <iostream> #include <cmath> #include <algorithm> using namespace std; typedef long long ll; int dp[50005][31][2]; int main() { ios::sync_with 阅读全文
摘要:
#include <bits/stdc++.h> typedef long long ll; const int maxn=5e5+10; using namespace std; ll dp[maxn]; int main() { ios_base::sync_with_stdio(false); 阅读全文
摘要:
#include <bits/stdc++.h> typedef long long ll; using namespace std; struct node{ int l,r; }a[100005]; int sum[100005]; int main() { ios::sync_with_std 阅读全文
摘要:
#include <bits/stdc++.h> typedef long long ll; using namespace std; const int maxn=2e6+10; const int maxm=5e6+10; struct nod{ int next,to,val; }edge[m 阅读全文