結果

問題 No.1121 Social Distancing in Cinema
ユーザー divinediscon10tdivinediscon10t
提出日時 2020-07-23 00:07:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,031 bytes
コンパイル時間 1,444 ms
コンパイル使用メモリ 171,420 KB
実行使用メモリ 9,960 KB
最終ジャッジ日時 2024-06-23 02:32:30
合計ジャッジ時間 4,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 18 ms
6,656 KB
testcase_18 AC 30 ms
9,216 KB
testcase_19 AC 34 ms
9,832 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 11 ms
5,376 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 32 ms
9,216 KB
testcase_29 AC 14 ms
5,504 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 36 ms
9,832 KB
testcase_32 AC 27 ms
8,548 KB
testcase_33 AC 12 ms
5,376 KB
testcase_34 AC 12 ms
5,376 KB
testcase_35 AC 27 ms
8,932 KB
testcase_36 AC 33 ms
9,728 KB
testcase_37 AC 10 ms
5,376 KB
testcase_38 AC 13 ms
6,016 KB
testcase_39 AC 29 ms
9,192 KB
testcase_40 AC 8 ms
5,376 KB
testcase_41 AC 4 ms
5,376 KB
testcase_42 AC 33 ms
9,700 KB
testcase_43 AC 32 ms
9,700 KB
testcase_44 AC 33 ms
9,960 KB
testcase_45 AC 34 ms
9,728 KB
testcase_46 AC 32 ms
9,572 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
const ll MOD = 1e9+7;
const ll INF = 1e18;
#define rep(i,m,n) for(ll i = (m); i <= (n); i++)
#define zep(i,m,n) for(ll i = (m); i < (n); i++)
#define rrep(i,m,n) for(ll i = (m); i >= (n); i--)
#define print(x) cout << (x) << endl;
#define printa(x,m,n) for(int i = (m); i <= n; i++){cout << (x[i]) << " ";} cout<<endl;

int main(){
    cin.tie(0); ios::sync_with_stdio(false);
    
    ll n; cin >> n;
    ll x[n], y[n]; zep(i, 0, n)cin >> x[i] >> y[i];
    
    vector<ll> v[10][10][2];
    zep(i, 0, n){
    	ll p = (x[i] / 9 + y[i] / 5) % 2;
    	v[x[i] % 9][y[i] % 5][p].push_back(i + 1);
    	
    }
    
    ll mx = 0, mi = -1, mj = -1, mk = -1;
    zep(i, 0, 9){
    	zep(j, 0, 5){
    		zep(k, 0, 2){
				if(v[i][j][k].size() > mx){
					mx = v[i][j][k].size();
					mi = i;
					mj = j;
					mk = k;
				}
    		}
    	}
    }
    
    print(mx)
    zep(i, 0, mx)cout << v[mi][mj][mk][i] << " "; cout << endl;
    
    return 0;
}
0