結果

問題 No.3001 ヘビ文字列
ユーザー 👑 hos.lyrichos.lyric
提出日時 2025-01-01 08:06:47
言語 D
(dmd 2.109.1)
結果
TLE  
実行時間 -
コード長 2,214 bytes
コンパイル時間 3,476 ms
コンパイル使用メモリ 117,376 KB
実行使用メモリ 16,144 KB
最終ジャッジ日時 2025-01-01 08:08:24
合計ジャッジ時間 94,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 1 ms
12,708 KB
testcase_02 AC 1 ms
13,468 KB
testcase_03 AC 1 ms
12,708 KB
testcase_04 AC 2 ms
12,976 KB
testcase_05 AC 1 ms
13,580 KB
testcase_06 AC 1 ms
12,712 KB
testcase_07 AC 2 ms
13,640 KB
testcase_08 AC 2 ms
12,708 KB
testcase_09 AC 1 ms
13,028 KB
testcase_10 AC 2 ms
12,708 KB
testcase_11 AC 1 ms
12,836 KB
testcase_12 AC 1 ms
12,708 KB
testcase_13 AC 1 ms
12,708 KB
testcase_14 AC 2 ms
13,636 KB
testcase_15 AC 765 ms
14,360 KB
testcase_16 AC 813 ms
13,872 KB
testcase_17 AC 777 ms
12,712 KB
testcase_18 AC 766 ms
15,064 KB
testcase_19 AC 801 ms
13,380 KB
testcase_20 AC 796 ms
15,880 KB
testcase_21 AC 770 ms
13,376 KB
testcase_22 AC 804 ms
13,472 KB
testcase_23 AC 795 ms
14,184 KB
testcase_24 AC 738 ms
16,144 KB
testcase_25 AC 47 ms
7,832 KB
testcase_26 AC 46 ms
14,424 KB
testcase_27 AC 48 ms
12,836 KB
testcase_28 AC 47 ms
15,152 KB
testcase_29 AC 47 ms
13,008 KB
testcase_30 AC 46 ms
13,664 KB
testcase_31 AC 49 ms
13,496 KB
testcase_32 AC 48 ms
13,636 KB
testcase_33 AC 48 ms
15,412 KB
testcase_34 AC 47 ms
13,640 KB
testcase_35 AC 70 ms
12,832 KB
testcase_36 AC 70 ms
13,640 KB
testcase_37 AC 68 ms
7,352 KB
testcase_38 AC 68 ms
6,820 KB
testcase_39 AC 69 ms
6,820 KB
testcase_40 AC 65 ms
6,816 KB
testcase_41 AC 66 ms
6,944 KB
testcase_42 AC 67 ms
7,876 KB
testcase_43 AC 67 ms
7,040 KB
testcase_44 AC 71 ms
7,480 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 AC 108 ms
6,816 KB
testcase_66 AC 181 ms
7,232 KB
testcase_67 AC 255 ms
8,428 KB
testcase_68 AC 107 ms
7,320 KB
testcase_69 AC 100 ms
6,820 KB
testcase_70 AC 135 ms
7,332 KB
testcase_71 AC 119 ms
6,816 KB
testcase_72 AC 105 ms
6,820 KB
testcase_73 AC 107 ms
6,820 KB
testcase_74 AC 126 ms
6,816 KB
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 AC 1 ms
6,820 KB
testcase_86 AC 2 ms
12,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }

string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }




void main() {
  try {
    for (; ; ) {
      const S = readToken;
      const N = cast(int)(S.length);
      
      int[26] cnt;
      
      int opt = N + 1;
      int dm = -1;
      foreach (d; 1 .. N) if (N % d == 0) {
        int cost;
        foreach (r; 0 .. d) {
          int mx;
          for (int i = r; i < N; i += d) chmax(mx, ++cnt[S[i] - 'A']);
          cost += (N/d - mx);
          for (int i = r; i < N; i += d) --cnt[S[i] - 'A'];
        }
        if (chmin(opt, cost)) {
          dm = d;
        }
      }
      debug writefln("opt = %s, dm = %s", opt, dm);
      
      auto ans = new char[N];
      {
        const d = dm;
        foreach (r; 0 .. dm) {
          for (int i = r; i < N; i += d) ++cnt[S[i] - 'A'];
          int am;
          foreach (a; 0 .. 26) if (cnt[am] < cnt[a]) am = a;
          for (int i = r; i < N; i += d) ans[i] = cast(char)('A' + am);
          for (int i = r; i < N; i += d) --cnt[S[i] - 'A'];
        }
      }
      writeln(ans);
    }
  } catch (EOFException e) {
  }
}
0