poj 1065 最長上公升子串行

2021-07-03 21:06:50 字數 884 閱讀 3112

題意:

有n支木棍,每只木棍有乙個長度 l 和 重量 w。

每次處理第一只木根的時候要消耗 1 的時間,緊接其後的木棍們,若滿足 l 和 w 都大於當前的木棍,可以不用消耗時間。

問在這樣的條件下,合理安排木棍處理順序,時間最小是多少。

解析:先間 l 從小到大排序,然後求 w 的上公升子串行,每次求完標記就行了。

**:

#include #include #include #include #include #include #include #include #include #include #include #include #include #define ll long long

#define lson lo, mi, rt << 1

#define rson mi + 1, hi, rt << 1 | 1

using namespace std;

const int maxn = 5000 + 10;

const int inf = 0x3f3f3f3f;

const double eps = 1e-8;

const double pi = acos(-1.0);

const double ee = exp(1.0);

struct machine

} mac[maxn];

bool vis[maxn];

int main()

sort(mac, mac + n);

int ans = 0;

for (int i = 0; i < n; i++)}}

ans++;}}

printf("%d\n", ans);

}return 0;

}

最長上公升子串行

問題描述 乙個數的序列bi,當b1 b2 bs的時候,我們稱這個序列是上公升的。對於給定的乙個序列 a1,a2,an 我們可以得到一些上公升的子串行 ai1,ai2,aik 這裡1 i1 i2 ik n。比如,對於序列 1,7,3,5,9,4,8 有它的一些上公升子串行,如 1,7 3,4,8 等等...

最長上公升子串行

最長上公升子串行問題是各類資訊學競賽中的常見題型,也常常用來做介紹動態規劃演算法的引例,筆者接下來將會對poj上出現過的這類題目做乙個總結,並介紹解決lis問題的兩個常用 演算法 n 2 和 nlogn 問題描述 給出乙個序列a1,a2,a3,a4,a5,a6,a7.an,求它的乙個子串行 設為s1...

最長上公升子串行

最長上公升子串行問題 給出乙個由n個數組成的序列x 1.n 找出它的最長單調上公升子串行。即求最大的m和a1,a2 am,使得a1動態規劃求解思路分析 o n 2 經典的o n 2 的動態規劃演算法,設a i 表示序列中的第i個數,f i 表示從1到i這一段中以i結尾的最長上公升子串行的長度,初始時...