
POJ
文章平均质量分 93
hsq_roy
在读研究生,研究方向区块链.
展开
-
POJ 3923 Ugly Windows 解题报告
原题链接:http://poj.org/problem?id=3923题目大意:求出窗体是在顶部的窗体,并输出其代号。源代码:#include"iostream"#include"vector"using namespace std;const int max_len = 999;const int max_num = 999;char win[max_len][m原创 2016-08-31 11:37:09 · 448 阅读 · 0 评论 -
POJ 1088 滑雪 解题报告(记忆化搜索)
滑雪Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 96997 Accepted: 36774题目连接:POJ1088DescriptionMichael喜欢滑雪百这并不奇怪, 因为滑雪的确很刺激。可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡原创 2017-05-13 12:53:03 · 550 阅读 · 0 评论 -
POJ 2524 Ubiquitous Religions 解题报告(并查集)
Ubiquitous ReligionsTime Limit: 5000MS Memory Limit: 65536KTotal Submissions: 34293 Accepted: 16540题目连接:http://poj.org/problem?id=2524DescriptionThere are so many原创 2017-04-17 13:16:30 · 557 阅读 · 0 评论 -
POJ 2246 Matrix Chain Multiplication 解题报告(栈)
题目连接:http://poj.org/problem?id=2246题目大意:给定n 个矩阵,求出这些矩阵的运算次数思路:通过“)”号断定需要运算的两个矩阵,否则将矩阵入栈。#include"iostream"#include"stack"#include"cstring"using namespace std;struct node{ int row; int col;原创 2016-10-09 13:12:53 · 393 阅读 · 0 评论