結果

問題 No.1121 Social Distancing in Cinema
ユーザー risujirohrisujiroh
提出日時 2020-07-22 21:58:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 971 bytes
コンパイル時間 3,701 ms
コンパイル使用メモリ 204,992 KB
実行使用メモリ 6,384 KB
最終ジャッジ日時 2023-09-04 18:39:50
合計ジャッジ時間 16,337 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,380 KB
testcase_01 AC 3 ms
4,384 KB
testcase_02 AC 3 ms
4,384 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 3 ms
4,380 KB
testcase_06 AC 3 ms
4,380 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 AC 3 ms
4,384 KB
testcase_48 AC 3 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifdef LOCAL
#include "debug.h"
#else
#define DEBUG(...)
#endif

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  vector v(500, vector(500, -1));
  auto f = [&](int ox, int oy, int id) {
    for (int y = oy; y < 500; y += 9) {
      for (int x = ox + 5 * ((y ^ oy) & 1); x < 500; x += 10) {
        v[x][y] = id;
      }
    }
  };
  int id = 0;
  for (int x = 0; x < 10; ++x) {
    for (int y = 0; y < 9; ++y) {
      f(x, y, id++);
    }
  }
  int n;
  cin >> n;
  vector<int> x(n), y(n), cnt(90);
  for (int i = 0; i < n; ++i) {
    cin >> x[i] >> y[i];
    --x[i], --y[i];
    ++cnt[v[x[i]][y[i]]];
  }
  int mi = max_element(begin(cnt), end(cnt)) - begin(cnt);
  vector<int> res;
  for (int i = 0; i < n; ++i) {
    if (v[x[i]][y[i]] == mi) {
      res.push_back(i);
    }
  }
  int k = size(res);
  cout << k << '\n';
  for (int i = 0; i < k; ++i) {
    cout << res[i] + 1 << " \n"[i == k - 1];
  }
}
0