結果

問題 No.1121 Social Distancing in Cinema
ユーザー risujirohrisujiroh
提出日時 2020-07-22 21:58:55
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 971 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 199,216 KB
最終ジャッジ日時 2025-01-12 02:42:03
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9 RE * 38
権限があれば一括ダウンロードができます

ソースコード

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