結果
問題 | No.1121 Social Distancing in Cinema |
ユーザー |
![]() |
提出日時 | 2020-07-22 22:02:48 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 978 bytes |
コンパイル時間 | 3,016 ms |
コンパイル使用メモリ | 198,476 KB |
最終ジャッジ日時 | 2025-01-12 02:44:57 |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 47 |
ソースコード
#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)) % 10; 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]; } }