返回顶部
大江东去,浪淘尽,千古风流人物。故垒西边,人道是,三国周郎赤壁。乱石穿空,惊涛拍岸,卷起千堆雪。江山如画,一时多少豪杰。遥想公瑾当年,小乔初嫁了,雄姿英发。羽扇纶巾,谈笑间,樯橹灰飞烟灭。故国神游,多情应笑我,早生华发。人生如梦,一尊还酹江月。
摘要: #include<bits/stdc++.h> using namespace std; const int maxn = 55; const int maxt = maxn*180+678; int dp[maxt],song[maxn],Case=0,n,t; int main() { //fr 阅读全文
posted @ 2019-05-10 11:16 plysc 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 定义状态dp[i][j]表示一个人到i,一个人到j,保证i>j 然后倒着推 #include<bits/stdc++.h> using namespace std; const int maxn = 1e3+10; struct node { int x,y; }point[maxn]; doubl 阅读全文
posted @ 2019-05-10 10:32 plysc 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 一道dp #include<bits/stdc++.h> using namespace std; const int maxn = 35; struct node { int x,y,z; node() {} node(int x,int y,int z) :x(x),y(y),z(z) {} b 阅读全文
posted @ 2019-05-10 09:46 plysc 阅读(108) 评论(0) 推荐(0) 编辑