結果

問題 No.2803 Bocching Star
ユーザー tnakao0123tnakao0123
提出日時 2024-07-15 14:19:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 50,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-15 14:19:58
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 48 ms
6,940 KB
testcase_05 AC 25 ms
6,940 KB
testcase_06 AC 6 ms
6,944 KB
testcase_07 AC 22 ms
6,940 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 44 ms
6,940 KB
testcase_10 AC 50 ms
6,944 KB
testcase_11 AC 58 ms
6,940 KB
testcase_12 AC 19 ms
6,944 KB
testcase_13 AC 40 ms
6,940 KB
testcase_14 AC 27 ms
6,940 KB
testcase_15 AC 64 ms
6,944 KB
testcase_16 AC 33 ms
6,944 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 8 ms
6,940 KB
testcase_19 AC 42 ms
6,940 KB
testcase_20 AC 27 ms
6,944 KB
testcase_21 AC 21 ms
6,940 KB
testcase_22 AC 23 ms
6,940 KB
testcase_23 AC 55 ms
6,944 KB
testcase_24 AC 77 ms
6,940 KB
testcase_25 AC 68 ms
6,940 KB
testcase_26 AC 74 ms
6,940 KB
testcase_27 AC 60 ms
6,944 KB
testcase_28 AC 63 ms
6,940 KB
testcase_29 AC 55 ms
6,944 KB
testcase_30 AC 72 ms
6,944 KB
testcase_31 AC 53 ms
6,940 KB
testcase_32 AC 77 ms
6,940 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2803.cc:  No.2803 Bocching Star - yukicoder
 */

#include<cstdio>
#include<algorithm>
#include<utility>

using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

using pii = pair<int,int>;

/* global variables */

int ps[MAX_N], as[MAX_N];
pii pis[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, s;
  scanf("%d%d", &n, &s);
  for (int i = 0; i < n; i++) scanf("%d", ps + i);

  for (int i = 0; i < n; i++) pis[i] = {ps[i], i};
  sort(pis, pis + n);

  int m = 0;
  for (int i = 0; i < n; i++)
    if ((i == 0 || pis[i - 1].first + s < pis[i].first) &&
	(i == n - 1 || pis[i].first + s < pis[i + 1].first))
      as[m++] = pis[i].second;
  sort(as, as + m);

  printf("%d\n", m);
  for (int i = 0; i < m; i++)
    printf("%d%c", as[i] + 1, (i + 1 < m) ? ' ' : '\n');
  
  return 0;
}
0