結果

問題 No.2745 String Swap Battle
ユーザー tnakao0123tnakao0123
提出日時 2024-06-17 11:51:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 70,984 KB
実行使用メモリ 7,320 KB
最終ジャッジ日時 2024-06-17 11:51:18
合計ジャッジ時間 2,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
7,320 KB
testcase_01 AC 7 ms
7,196 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 5 ms
6,960 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 6 ms
7,184 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 5 ms
6,948 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 38 ms
6,940 KB
testcase_13 AC 38 ms
6,944 KB
testcase_14 AC 38 ms
6,940 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2745.cc:  No.2745 String Swap Battle - yukicoder
 */

#include<cstdio>
#include<string>
#include<vector>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 100000;
const int MAX_L = 100000;

/* typedef */

using vi = vector<int>;

/* global variables */

char s[MAX_L + 4];
string ss[MAX_N];

/* subroutines */

void opr1(string &t) {
  int n = t.size();

  vi cvs[26];
  for (int i = 0; i < n; i++) cvs[t[i] - 'a'].push_back(i);

  for (int i = 0; i < n; i++) {
    int ti = t[i] - 'a';
    for (int c = 0; c < ti; c++)
      if (! cvs[c].empty() && i < cvs[c].back()) {
	swap(t[i], t[cvs[c].back()]);
	return;
      }
  }

  for (int c = 0; c < 26; c++)
    if (cvs[c].size() >= 2) return;

  swap(t[n - 2], t[n - 1]);
}

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) {
    scanf("%s", s);
    ss[i] = string(s);
  }

  string mint(1, 'z' + 1);
  int x = 0;
  for (int i = 0; i < n; i++) {
    opr1(ss[i]);
    if (mint > ss[i]) mint = ss[i], x = 1;
    else if (mint == ss[i]) x++;
  }

  for (int i = 0; i < n; i++)
    printf("%d\n", (mint == ss[i]) ? n + 1 - x : 0);

  return 0;
}
0