結果

問題 No.893 お客様を誘導せよ
ユーザー yicodeyicode
提出日時 2023-05-16 12:40:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 1,705 ms
コンパイル使用メモリ 172,912 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-05-08 10:29:58
合計ジャッジ時間 2,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,424 KB
testcase_01 AC 5 ms
7,424 KB
testcase_02 AC 10 ms
7,552 KB
testcase_03 AC 24 ms
7,608 KB
testcase_04 AC 24 ms
7,612 KB
testcase_05 AC 22 ms
7,604 KB
testcase_06 AC 17 ms
7,680 KB
testcase_07 AC 6 ms
7,424 KB
testcase_08 AC 45 ms
7,936 KB
testcase_09 AC 5 ms
7,424 KB
testcase_10 AC 5 ms
7,552 KB
testcase_11 AC 6 ms
7,424 KB
testcase_12 AC 6 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Graph = vector<vector<int>>;
vector<vector<int>> X(1000, vector<int>(1000));
int main() {
    int N; cin >> N;
    int ma = 0;
    for(int i = 0; i < N; i++){
        int x; cin >> x;
        ma = max(ma,x);
        for(int j = 0; j <x; j++) {
            int z; cin >> z;
            X[i][j] = z;
        }
    }
    vector<int> A(ma);
    for(int i = 0; i < N; i++) {
        for(int j = 0; j < ma; j++){
            A[j]++;
        }
    }
    vector<int> ans;
    for(int i = 0; i < ma; i++) {
        for(int j = 0; j < N; j++) {
            if(X[j][i] != 0) {
                ans.push_back(X[j][i]);
            }
        }
    }
    for(int i = 0; i < ans.size(); i++) {
        if(ans.size() - 1 == i) {
            cout << ans[i] << endl;
            return 0;
        }
        cout << ans[i] << " ";
    }
}
0