
SDUT
BEconfidence
坚持才是胜利之道
展开
-
[2413]n a^o7 !
n a^o7 ! Time Limit: 1000ms Memory limit: 65536K 有疑问?点这里^_^ 题目描述 All brave and intelligent fighters, next you will step into a distinctive battleground which is full of sweet and happine原创 2015-04-11 20:28:55 · 876 阅读 · 0 评论 -
sdut1730 数字三角形问题(dp入门题)
#include int a[100][100]; int main() { int n; scanf("%d",&n); for(int i=1;i<=n;i++) for(int j=1;j<=i;j++) scanf("%d",&a[i][j]); int maxx =0; for(int i=2;i<=n;i原创 2015-07-12 11:01:07 · 852 阅读 · 0 评论 -
sdut1299 最长上升子序列(dp入门)
#include #include using namespace std; int a[1000]; int dp[1000]; int main() { int n; scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d",&a[i]); int maxx=0; for(int i=1;i<=n;原创 2015-07-12 11:10:03 · 969 阅读 · 0 评论 -
SDUT2159 Ivan comes again!(省赛原题)(STL)
题目连接:http://acm.sdut.edu.cn/sdutoj/showproblem.php?pid=2159&cid=1172 示例输入 4 add 2 3 find 1 2 remove 2 3 find 1 2 0 示例输出 Case 1: 2 3 -1 题意:跟hello world题意差不多,第一行N个操作,“add”是加入容器一个原创 2015-04-25 10:50:54 · 620 阅读 · 0 评论 -
sdut2410 Mine Number
Mine Number Time Limit: 1000MS Memory limit: 65536K 题目描述 Every one once played the game called Mine Sweeping, here I change the rule. You are given an n*m map, every element is a '*' repres原创 2015-04-13 10:51:21 · 623 阅读 · 0 评论 -
sdut2411 Pixel density
Pixel density Time Limit: 1000MS Memory limit: 65536K 题目描述 Pixels per inch (PPI) or pixel density is a measurement of the resolution of devices in various contexts; typically computer di原创 2015-04-12 20:19:53 · 527 阅读 · 0 评论 -
sdut2409 The Best Seat in ACM Contest
The Best Seat in ACM Contest Time Limit: 1000MS Memory limit: 65536K 题目描述 Cainiao is a university student who loves ACM contest very much. It is a festival for him once when he attends ACM原创 2015-04-12 21:12:49 · 665 阅读 · 0 评论 -
sdut2408 Pick apples
Pick apples Time Limit: 1000ms Memory limit: 165536K 有疑问?点这里^_^ 题目描述 Once ago, there is a mystery yard which only produces three kinds of apples. The number of each kind is infinite. A g原创 2015-04-12 22:59:00 · 668 阅读 · 0 评论 -
SDUT2416 Fruit Ninja II
Fruit Ninja II Time Limit: 5000MS Memory limit: 65536K 题目描述 Have you ever played a popular game named "Fruit Ninja"? Fruit Ninja (known as Fruit Ninja HD on the iPad and Fruit Nin原创 2015-04-12 20:18:15 · 584 阅读 · 0 评论 -
sdut2852 小鑫去爬山9dp入门)
#include int a[100][100]; int main() { int n; while(scanf("%d",&n)!=EOF) { for(int i=1;i<=n;i++) for(int j=1;j<=i;j++) scanf("%d",&a[i][j]); for(in原创 2015-07-12 15:12:27 · 880 阅读 · 0 评论