結果

問題 No.927 Second Permutation
ユーザー queeequeee
提出日時 2019-11-22 21:54:01
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 57,240 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-19 11:08:46
合計ジャッジ時間 1,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
  string s; cin >> s; int n = s.size();
  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;
  }
  //cout << f1 << " " << f2 << endl;
  if (f1 == 10 || f2 == 10) 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