結果

問題 No.1121 Social Distancing in Cinema
ユーザー hedwig100hedwig100
提出日時 2020-07-22 22:21:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,044 bytes
コンパイル時間 1,478 ms
コンパイル使用メモリ 172,308 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 18:52:41
合計ジャッジ時間 8,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 3 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
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 3 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 27 ms
6,944 KB
testcase_26 AC 36 ms
6,948 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 WA -
testcase_29 AC 34 ms
6,944 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 3 ms
6,940 KB
testcase_48 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (int)(n); i ++)
#define irep(i,n) for (int i = (int)n - 1;i >= 0;--i)
using namespace std;
using ll = long long;
using PL = pair<ll,ll>;
using P = pair<int,int>;
constexpr int INF = 1000000000;
constexpr long long HINF = 1000000000000000;
constexpr long long MOD = 1000000007;// = 998244353;
constexpr double EPS = 1e-4;
constexpr double PI = 3.14159265358979;

int main() {
    int N; cin >> N;
    vector<vector<int>> grid(500,vector<int>(500,0));
    rep(i,N) {
        int x,y; cin >> x >> y;
        grid[x - 1][y - 1] = i + 1;
    }

    vector<int> ans;
    int K = 0;
    rep(i,500) {
        bool flag = false;
        rep(j,500) {
            if (grid[i][j] > 0) {
                ans.push_back(grid[i][j]);
                ++K;
                flag = true;
                j += 10;
            }
        }
        if (flag) {
            i += 10;
        }
    }
    cout << K << '\n';
    rep(i,K) {
        cout << ans[i] << ' ';
    }
    cout << '\n';
    return 0;
}
0