poj
coding__girl
这个作者很懒,什么都没留下…
展开
-
POJ 2062 Card Game Cheater
Adam and Eve play a card game using a regular deck of 52 cards. The rules are simple. The players sit on opposite sides of a table, facing each other. Each player gets k cards from the deck and, after原创 2017-10-02 14:53:13 · 321 阅读 · 0 评论 -
POJ 2051 Argus
A data stream is a real-time, continuous, ordered sequence of items. Some examples include sensor data, Internet traffic, financial tickers, on-line auctions, and transaction logs such as Web usage log原创 2017-10-02 14:36:32 · 235 阅读 · 0 评论 -
poj 3468 A Simple Problem with Integers
You have N integers, A1, A2, … , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number in a given interval. The other is to ask for the sum原创 2017-10-14 21:40:47 · 184 阅读 · 0 评论 -
poj 2352 Stars
题意: 在坐标上有n个星星,如果某个星星左下位置有a个星星,就表示这个星星属于level a 星星坐标输入按照y递增,如果y相同则x递增,求出所有level水平的星星数量 #include <iostream> #include <cstdio> #include <cstring> using namespace std; const int Maxn=32005; const int N=1原创 2017-10-14 22:06:24 · 167 阅读 · 0 评论 -
poj 2406 Power Strings
Description Given two strings a and b we define a*b to be their concatenation. For example, if a = “abc” and b = “def” then a*b = “abcdef”. If we think of concatenation as multiplication, exponentiati原创 2017-11-21 11:38:41 · 166 阅读 · 0 评论