結果

問題 No.1121 Social Distancing in Cinema
ユーザー IKyoproIKyopro
提出日時 2020-07-22 21:51:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 985 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 207,140 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 15:46:47
合計ジャッジ時間 5,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 5 ms
6,944 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 18 ms
6,940 KB
testcase_18 AC 32 ms
6,944 KB
testcase_19 AC 37 ms
6,944 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 14 ms
6,940 KB
testcase_26 AC 16 ms
6,944 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 32 ms
6,940 KB
testcase_29 AC 15 ms
6,940 KB
testcase_30 AC 11 ms
6,948 KB
testcase_31 AC 38 ms
6,940 KB
testcase_32 AC 28 ms
6,940 KB
testcase_33 AC 14 ms
6,940 KB
testcase_34 AC 14 ms
6,940 KB
testcase_35 AC 30 ms
6,940 KB
testcase_36 AC 35 ms
6,944 KB
testcase_37 AC 10 ms
6,940 KB
testcase_38 AC 17 ms
6,944 KB
testcase_39 AC 35 ms
6,940 KB
testcase_40 AC 9 ms
6,944 KB
testcase_41 AC 5 ms
6,940 KB
testcase_42 AC 34 ms
6,944 KB
testcase_43 AC 34 ms
6,944 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 4 ms
6,940 KB
testcase_48 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template <class T> using vec = vector<T>;
template <class T> using vvec = vector<vec<T>>;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int M = 500;
    vvec<int> id(M,vec<int>(M,-1));
    vvec<int> ok(M,vec<int>(M,1));
    int N;
    cin >> N;
    for(int i=0;i<N;i++){
        int x,y;
        cin >> x >> y;
        x--; y--;
        id[x][y] = i;
    }
    vec<int> ans;

    auto in = [&](int x,int y){
        return 0<=x && x<M && 0<=y && y<M;
    };

    auto update = [&](int x,int y){
        for(int dx=-10;dx<=10;dx++) for(int dy=-10;dy<=10;dy++){
            if(in(x+dx,y+dy) && dx*dx+dy*dy<100) ok[x+dx][y+dy] = 0;
        }
    };

    for(int i=0;i<M;i++) for(int j=0;j<M;j++) if(id[i][j]!=-1 && ok[i][j]){
        ans.push_back(id[i][j]);
        update(i,j);
    }

    int n = ans.size();
    cout << n << "\n";
    for(int i=0;i<n;i++) cout << ans[i]+1 << (i!=n-1? " ":"\n");
}
0