結果
問題 | No.205 マージして辞書順最小 |
ユーザー | dsxs |
提出日時 | 2018-09-28 17:25:37 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,132 bytes |
コンパイル時間 | 67 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 54,832 KB |
最終ジャッジ日時 | 2024-10-13 00:42:56 |
合計ジャッジ時間 | 4,957 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
38,912 KB |
testcase_01 | AC | 64 ms
39,040 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 59 ms
39,296 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 921 ms
54,832 KB |
testcase_11 | AC | 809 ms
53,104 KB |
testcase_12 | WA | - |
testcase_13 | AC | 395 ms
52,196 KB |
testcase_14 | AC | 63 ms
39,680 KB |
testcase_15 | AC | 59 ms
39,552 KB |
testcase_16 | AC | 58 ms
39,296 KB |
testcase_17 | AC | 62 ms
39,296 KB |
testcase_18 | WA | - |
ソースコード
function Main(input) { var data = input.split("\n").filter(s => s.length > 0) var n = data.shift() * 1 let r = '' function findMinIdx(input){ const codes = input.map(s=>s.slice(0, 1)).map(s=>[].reduce.call(s, (sum ,c)=> sum += c.charCodeAt(0), 0)) const minCode = Math.min(...codes) const minIdxes = codes.map((c, i) => [c, i]).filter(a => a[0] == minCode).map(a => a[1]) if (minIdxes.length == 1) { return minIdxes.pop() } let nextInputIndex = [] let nextInput = input.filter((s, i) => { let isNext = s.charCodeAt(0) == minCode if (isNext){ nextInputIndex.push(i) } return isNext }).map(s => s.slice(1)) if (nextInput.length < 1) { return minIdxes.pop() } return nextInputIndex[findMinIdx(nextInput)] } var input = data while (input.length > 0) { const minIdx = findMinIdx(input) const str = input[minIdx] r += str[0] input[minIdx] = str.slice(1) input = input.filter(s => s.length > 0) } console.log(r) } // Don't edit this line! Main(require("fs").readFileSync("/dev/stdin", "utf8"));