結果
問題 | No.1619 Coccinellidae |
ユーザー | tenten |
提出日時 | 2021-07-26 17:12:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,039 bytes |
コンパイル時間 | 3,054 ms |
コンパイル使用メモリ | 78,032 KB |
実行使用メモリ | 57,140 KB |
最終ジャッジ日時 | 2024-07-22 08:11:40 |
合計ジャッジ時間 | 7,287 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,088 KB |
testcase_01 | AC | 165 ms
54,244 KB |
testcase_02 | WA | - |
testcase_03 | AC | 53 ms
50,268 KB |
testcase_04 | AC | 179 ms
54,328 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 132 ms
54,204 KB |
testcase_08 | WA | - |
testcase_09 | AC | 54 ms
50,136 KB |
testcase_10 | AC | 130 ms
51,412 KB |
testcase_11 | WA | - |
testcase_12 | AC | 51 ms
50,336 KB |
testcase_13 | AC | 164 ms
54,556 KB |
testcase_14 | WA | - |
testcase_15 | AC | 50 ms
50,216 KB |
testcase_16 | AC | 50 ms
50,336 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); long m = sc.nextLong(); long last = m - (long)(n - 1) * (n - 2) / 2; long k = sc.nextLong(); long[] ans = new long[n]; Arrays.fill(ans, -1L); int min = 0; int max = n - 1; BinaryIndexedTree bit = new BinaryIndexedTree(n + 1); for (int i = 0; i < n - 1; i++) { if (k == 0) { ans[min] = i; while (ans[min] >= 0) { min++; } } else if (max - bit.getSum(max + 1) <= k) { k -= max - bit.getSum(max + 1); ans[max] = i; bit.add(max + 1, 1); while (ans[max] >= 0) { max--; } } else { int left = min; int right = max; while (right - left > 1) { int mm = (left + right) / 2; if (mm - bit.getSum(mm + 1) <= k) { left = mm; } else { right = mm; } } ans[left] = i; bit.add(left, 1); while (ans[min] >= 0) { min++; } } } ans[min] = last; StringBuilder sb = new StringBuilder(); for (int i = 0; i < n; i++) { sb.append(ans[i]).append("\n"); } System.out.print(sb); } } class BinaryIndexedTree { int size; int[] tree; public BinaryIndexedTree(int size) { this.size = size; tree = new int[size]; } public void add(int idx, int value) { int mask = 1; while (idx < size) { if ((idx & mask) != 0) { tree[idx] += value; idx += mask; } mask <<= 1; } } public int getSum(int from, int to) { return getSum(to) - getSum(from - 1); } public int getSum(int x) { int mask = 1; int ans = 0; while (x > 0) { if ((x & mask) != 0) { ans += tree[x]; x -= mask; } mask <<= 1; } return ans; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }