Uva 1590 IP Networks的一个问题
题目:https://vjudge.net/problem/UV...uDebug:https://www.udebug.com/UVa/1590 uDebug测试样例都过了,可是提交还是WA,不知道问题出在哪里了,不…
一道hihocoder的编程题
题目如下 时间限制:20000ms单点时限:1000ms内存限制:256MB 描述 有n个怪物,第i个怪物的血量是ai,设这n个怪物组成的集合为T。 现在你有一个技能,发…
PAT 1014 福尔摩斯的约会
https://pintia.cn/problem-set...这个题目第1、2个用例总是过不了,大佬们能帮忙看看哪里错了吗? #include <iostream> #include <string> …
HDU CityGame用java一直wa,求解答下。
import java.io.BufferedInputStream import java.util.Arrays import java.util.Scanner public class Main { final static int N = 1010// // stat…
Uva455 Periodic Strings Compilation error问题
求教为什么一直是Compilation error?OJ: https://vjudge.net/problem/UV... #include <iostream> #include <cstring> #include <string>…
splay区间翻转不会破坏二叉搜索树的性质吗
当splay区间翻转的时候是直接交换了左右子树的指针的,那么这样不会改变二叉搜索树的性质吗 struct Node{ Node* ch[2] int v int s int flip int cmp…
寻找一个最长的,拥有尽可能最大的第k小的数的子数列问题的快速算法
一道学校内部oj上的题。原题英文,翻译过来是这样的: 输入三个整数n,m,k与一个数列{an}(一共有n个元素),{an}内部的元素各不相同。请找到{an}的一…
leetcode中的一个问题?
原题链接 题目描述:Given an integer, write a function to determine if it is a power of two.也就是判断一个数是否是2的幂 我的代码如下: class…
leetcode的第617题--合并二叉树,出现了内存对齐的问题?
我的代码如下: /* Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are over…
ACM字符串问题!!
题目在此:http://noi.openjudge.cn/ch010... 我的代码如下: #include<stdio.h> #include<iostream> #include<string> #include<stri…