結果
問題 | No.893 お客様を誘導せよ |
ユーザー | ajiruajiru |
提出日時 | 2019-12-05 21:49:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 618 bytes |
コンパイル時間 | 833 ms |
コンパイル使用メモリ | 82,584 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 06:24:42 |
合計ジャッジ時間 | 1,890 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 13 ms
5,376 KB |
testcase_04 | AC | 13 ms
5,376 KB |
testcase_05 | AC | 13 ms
5,376 KB |
testcase_06 | AC | 9 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 28 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 |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <tuple> using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int N, P, A; cin >> N; //<順番、レジ番号、お客様番号> vector<tuple<int, int, int> > customer; for (int i = 0; i < N; ++i) { cin >> P; for (int j = 0; j < P; ++j) { cin >> A; customer.push_back({ j,i,A }); } } sort(customer.begin(), customer.end()); for (int i = 0; i < customer.size(); ++i) { if (i == customer.size() - 1) cout << get<2>(customer[i]) << endl; else cout << get<2>(customer[i]) << " "; } return 0; }