POJ推荐50题 著名的北邮acm训练队推荐50题 https://blog.csdn.net/bat67/article/details/71735012 阶段练习 https://blog.csdn.net/qq_40688707/article/details/80602064 第一阶段:练经 ...
分类:
其他好文 时间:
2018-11-19 21:32:23
阅读次数:
187
Borg Maze http://poj.org/problem?id=3026 Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 18230 Accepted: 5870 Description The Borg is an im ...
分类:
其他好文 时间:
2018-11-19 20:21:16
阅读次数:
141
Description Freddy Frog is sitting on a stone in the middle of a lake. Suddenly he notices Fiona Frog who is sitting on another stone. He plans to vis ...
分类:
其他好文 时间:
2018-11-19 13:30:53
阅读次数:
176
题目链接:A Simple Problem with Integers 题意:N个数字,M次操作;操作分为两种,第一种将$[L,R]$区间内的每个数都加上C,第二种为求$[L,R]$区间内的数字和。 题解:线段树基本操作,区间修改和区间求和 1 #include <cstdio> 2 #define ...
分类:
其他好文 时间:
2018-11-18 22:39:21
阅读次数:
169
题目链接:http://poj.org/problem?id=1458 Common Subsequence Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 63588 Accepted: 26535 Description A ...
分类:
其他好文 时间:
2018-11-18 21:04:09
阅读次数:
153
Description Bessie is out in the field and wants to get back to the barn to get as much sleep as possible before Farmer John wakes her for the morning ...
分类:
其他好文 时间:
2018-11-18 14:59:31
阅读次数:
137
Following Orders Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 5473 Accepted: 2239 Description Order is an important concept in mathemati ...
分类:
编程语言 时间:
2018-11-17 17:53:47
阅读次数:
170
Description 定义一个二维数组: int maze[5][5] = {0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0,}; 它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖 ...
分类:
其他好文 时间:
2018-11-17 17:47:46
阅读次数:
169
"嘟嘟嘟" 题意:按逆时针或顺时针给出一个多边形,求面积。 解法:直接套用公式:$S = \frac{1}{2}|\sum _ {i = 1} ^ {n} {v_i \times v_{i + 1}}|$ 别忘了POJ实数输出的时候必须%$f$,不能%$lf$…… c++ include inclu ...
分类:
其他好文 时间:
2018-11-17 16:15:37
阅读次数:
174
title: poj 2253_最短路练习 date: 2018 11 17 11:48:51 tags: acm 刷题 categories: ACM 最短路 概述 "一道最短路的变形题" ,,虽然说解法不止这一种,, 这道题看了好久都没看懂题意,,不知到在求什么,,,最后迫不得已去看了别人的思路 ...
分类:
其他好文 时间:
2018-11-17 14:42:35
阅读次数:
165