Educational Codeforces Round 54 (Rated for Div. 2) A. Minimizing the String(思维)

 

题目链接:http://codeforces.com/contest/1076/problem/A

       题意是输入一个字符串,然后要求删除一个字符,输出删除一个字符后的字典序最小的字符串。

       直接看代码吧,不细心的话还是有hack点的...


AC代码:

#include 
using namespace std;
int main()
{
  string str;
  int n;
  cin>>n;
  cin>>str;
  bool flag = 0;
  int len = str.length();
  for(int i=1;i

 

你可能感兴趣的:(CodeForces)