3-6環形序列(Circular Sequence,AMC/ICPC Seoul 2004, UVa1584

#include #include using namespace std; int main() {  int T;  cin >> T;  while (T-- > 0)  {   string org;   cin >> org;   int n = org.size();   string smallest = org;   for (int i = 1; i < n; ++i)   {
相關文章
相關標籤/搜索