摘要:
#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 阅读全文
摘要:
定义状态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 阅读全文
摘要:
一道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 阅读全文