摘要:
贪心策略: 要么让最快的人依次把最慢的两个人渡过河再回来。要么让最快的两个人先过河,最快的人回来,然后最慢的两个过河,第二快的回来。直到剩余人数少于4人为止; 1700 Accepted 320K 16MS G++ 668B #include "cstdio" #include "algorithm 阅读全文
摘要:
dp[i][j]表示i个砖头构成的最高台阶不高于j的楼梯数目 Accepted 1163 C++11 0 2280 #include "bits/stdc++.h" using namespace std; typedef long long LL; const int MAXN = 500 + 5 阅读全文