Codeforces Round #293 (Div. 2) A. Vitaly and Strings
5004 단어 codeforces
제목 주소:http://codeforces.com/contest/518/problem/A
1 /* 2 : s,t, :s < r < t r 3 : 4 , s < t, t s 5 1 , " " 1, 0, 1 6 !strcmp (t, s): t < s t > s ( ) ,t == s NO 7 */ 8 #include <cstdio> 9 #include <iostream> 10 #include <cstring> 11 #include <string> 12 #include <algorithm> 13 #include <cmath> 14 #include <vector> 15 #include <map> 16 #include <set> 17 using namespace std; 18 19 const int MAXN = 1e6 + 10; 20 const int INF = 0x3f3f3f3f; 21 22 int main(void) 23 { 24 //freopen ("A.in", "r", stdin); 25 26 char s[110], t[110]; 27 28 while (~scanf ("%s %s", &s, &t)) 29 { 30 int cnt = strlen (s) - 1; 31 while (t[cnt] == 'a' && cnt >= 0) 32 { 33 t[cnt] = 'z'; 34 cnt--; 35 } 36 t[cnt]--; 37 (!strcmp (t, s)) ? puts ("No such string") : printf ("%s
", t); 38 } 39 40 return 0; 41 }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.