ZOJ
笑对这个世界的志贵
这个作者很懒,什么都没留下…
展开
-
ZOJ - 3785 What day is that day?
Problem Description It’s Saturday today, what day is it after 1^1 + 2^2 + 3^3 + … + N^N days?Input There are multiple test cases. The first line of input contains an integer T indicating the numbe翻译 2017-04-24 21:17:15 · 328 阅读 · 0 评论 -
【线段树区间更新 && 染色】ZOJ - 1610 Count the Colors
Problem Description 给你一个n,接下来n行,每行x1,x2,c代表将一维坐标轴上的x1-x2这段区间染色成颜色c,先画出来的可能会被后面画出来的覆盖掉。问你最后能看到的颜色和条数思路: 区间更新,只需要lazy标记就好了。x1需要++,因为区间段少1。详细看代码#include<bits/stdc++.h>using namespace std;#define l翻译 2017-08-24 08:26:14 · 399 阅读 · 0 评论 -
【贪心】ZOJ - 3385 Hanami Party
Problem Description 你可以选择今天不制作,让你每天做的数量变为L+1,或者今天制作L个 如何N天后剩下的蛋糕最多Input There are multiple test cases (no more than 20). The first line contains two integers N and L (1 <= N <= 100000, 0 <=翻译 2017-04-24 21:27:53 · 1822 阅读 · 0 评论