容错声明: ①题目选自https://acm.ecnu.edu.cn/,不再检查题目删改情况 ②所有代码仅代表个人AC提交,不保证解法无误 E0001 A+B Problem First AC: 2017-10-13 Latest Modification: 2018-02-28 #include<bits/stdc++.h> using namespace std; int a,b; int main() { cin>>a>>b; cout<<…
任意门:http://hihocoder.com/problemset/problem/1829 Tomb Raider 时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描述 Lara Croft, the fiercely independent daughter of a missing adventurer, must push herself beyond her limits when she discovers the island where her fath…
题意:给出n个字符,m对关系,让你输出三种情况: 1.若到第k行时,能判断出唯一的拓扑序列,则输出: Sorted sequence determined after k relations: 序列 2.若到第k行,出现环,则输出: Inconsistency found after k relations. 3.若直到m行后,仍判断不出唯一的拓扑序列,则输出: Sorted sequence cannot be deter…
题干: 如果字符串 s 中的字符循环移动任意位置之后能够得到另一个字符串 t,那么 s 就被称为 t 的回环变位(circular rotation). 例如,ACTGACG 就是 TGACGAC 的一个回环变位,反之亦然.判定这个条件在基因组序列的研究中是很重要的. 编写一个程序检查两个给定的字符串 s 和 t 是否互为回环变位. A string s is a circular rotation of a string t if it matches when the chara…