結果
問題 | No.893 お客様を誘導せよ |
ユーザー | yicode |
提出日時 | 2023-05-16 12:27:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 902 bytes |
コンパイル時間 | 1,793 ms |
コンパイル使用メモリ | 173,032 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-05-08 10:21:39 |
合計ジャッジ時間 | 4,789 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#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 < X[i].size(); 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] << " "; } }