博客园 首页 私信博主 显示目录 隐藏目录 管理 动画
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 const int maxn=2e6+10; 8 long long dp[maxn][2]; 9 long long w[maxn]; 10 11 struct node 12 { 13... 阅读全文
posted @ 2019-07-22 16:59 2529102757 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 const int maxn=1e6+10; 8 9 struct node 10 { 11 int l; 12 int r; 13 int value; 14 ... 阅读全文
posted @ 2019-07-22 11:27 2529102757 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 const int maxn=2010; 7 struct node 8 { 9 int a,b; 10 }gua[maxn]; 11 int dp[maxn][maxn]; 12 int n; 13 bool cmp(node a... 阅读全文
posted @ 2019-07-22 11:26 2529102757 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 const int maxn=1e6+10; 8 struct node 9 { 10 int l,r; 11 long long sum,maxx; 12 }tree[maxn]; 13 long long ... 阅读全文
posted @ 2019-07-22 11:26 2529102757 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 long long n,m; 4 long long f[100000]; 5 long long g[100000]; 6 long long w[100000]; 7 int main() 8 { 9 cin>>n>>m; 10 for(int i=1;i>w[i]; 13 ... 阅读全文
posted @ 2019-07-22 11:25 2529102757 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 using namespace std; 3 int n; 4 const int maxn=1012; 5 bool note[maxn+1]; 6 long long p[maxn]; 7 long long dp[maxn][maxn]; 8 long long tot; 9 int pre() 10 { 11 for(int i... 阅读全文
posted @ 2019-07-22 11:24 2529102757 阅读(86) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wyfcyx_forever/article/details/40211739 阅读全文
posted @ 2019-07-22 11:23 2529102757 阅读(132) 评论(0) 推荐(0) 编辑