結果

問題 No.893 お客様を誘導せよ
ユーザー bonKotsubonKotsu
提出日時 2021-12-08 00:15:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 3,939 ms
コンパイル使用メモリ 205,916 KB
実行使用メモリ 4,472 KB
最終ジャッジ日時 2023-09-22 12:16:25
合計ジャッジ時間 5,239 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 6 ms
4,380 KB
testcase_03 AC 19 ms
4,376 KB
testcase_04 AC 19 ms
4,380 KB
testcase_05 AC 18 ms
4,376 KB
testcase_06 AC 12 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 37 ms
4,472 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 3 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>
#define LP pair<ll, ll>


int main() {
  int n;
  cin >> n;
  vector<queue<int>> q(n);
  vector<int> ans;
  rep(i,n) {
    int p;
    cin >> p;
    rep(pi,p) {
      int a;
      cin >> a;
      q[i].push(a);
    }
  }

  bool flag = true;
  while (flag) {
    // レジを1周する間に一人でも移動したか
    flag = false;

    rep(i,n) {
      if (!q[i].empty()) {
        ans.push_back(q[i].front());
        q[i].pop();
        flag = true;
      }
    }   
  }
  rep(i,ans.size()) cout << ans[i] << " ";
  cout << endl;

  return 0;
}
0