摘要:
#include<bits/stdc++.h> #define ll long long using namespace std; const int N = 2e5 + 10,inf = 0x3f3f3f3f; vector<int> g[N]; int R[N]; int vis[N]; int 阅读全文
摘要:
#include<bits/stdc++.h> using namespace std; const int N=460; int n,w,d,ans,dp[2][N][N*N],a[N]; // dp使用滚动数组优化空间 signed main(){ ios::sync_with_stdio(0) 阅读全文