結果

問題 No.927 Second Permutation
ユーザー queeequeee
提出日時 2019-11-22 21:55:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 56,344 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 03:30:00
合計ジャッジ時間 1,468 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 8 ms
6,816 KB
testcase_12 AC 5 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 6 ms
6,820 KB
testcase_15 AC 5 ms
6,816 KB
testcase_16 AC 9 ms
6,820 KB
testcase_17 AC 9 ms
6,820 KB
testcase_18 AC 9 ms
6,816 KB
testcase_19 AC 9 ms
6,820 KB
testcase_20 AC 9 ms
6,816 KB
testcase_21 AC 9 ms
6,816 KB
testcase_22 AC 9 ms
6,816 KB
testcase_23 AC 9 ms
6,820 KB
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

int main() {
  string s; cin >> s; int n = s.size(), num123456789=0;
  int nm[10]; fill(nm, nm+10, 0); int f1=10, f2=10;
  for(int i=0; i<n; i++) {
    int now = s[i]-'0';
    nm[now]++;
    if (now < f1) f2=f1, f1=now;
    else if (f1 < now && now < f2) f2=now;
    num123456789 += now>1;
  }
  //cout << f1 << " " << f2 << endl;
  if (f1 == 10 || f2 == 10 || num123456789 <= 1) return puts("-1") * 0;
  for(int i=9; i>=0; i--) {
    for(int j=0; j<nm[i]; j++) {
      if (j == 0 && i == f1) cout << f2;
      else if (j == nm[i]-1 && i == f2) cout << f1;
      else cout << i;
    }
  }
}
0