結果

問題 No.2680 研究室配属
ユーザー tobbietobbie
提出日時 2024-05-05 16:39:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 175,120 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-05-05 16:39:51
合計ジャッジ時間 4,743 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 32 ms
5,376 KB
testcase_11 AC 30 ms
5,376 KB
testcase_12 AC 41 ms
5,376 KB
testcase_13 AC 31 ms
5,376 KB
testcase_14 AC 44 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 100 ms
5,376 KB
testcase_17 AC 19 ms
5,376 KB
testcase_18 AC 62 ms
5,376 KB
testcase_19 AC 131 ms
5,888 KB
testcase_20 AC 104 ms
5,504 KB
testcase_21 AC 13 ms
5,376 KB
testcase_22 AC 77 ms
5,376 KB
testcase_23 AC 214 ms
7,424 KB
testcase_24 AC 214 ms
7,296 KB
testcase_25 AC 227 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)(n); i++)

int main() {
  int N, M;
  cin >> N >> M;
  vector<int> A(M);
  rep(i, M)
    cin >> A[i];
  vector<vector<int>> T(N, vector<int> (M));
  rep(i, N) rep(j, M)
    cin >> T[i][j];
  vector<vector<int>> B(M);
  vector<bool> fix(N, false);
  vector<bool> done(M, false);
  rep(k, N) {
    rep(j, N) {
      if (fix[j]) continue;
      if (done[T[j][k]]) continue;
      B[T[j][k]].push_back(j);
      fix[j] = true;
    }
    rep(i, M) {
      if (done[i]) continue;
      while ((int)B[i].size() > A[i]) {
	fix[B[i][(int)B[i].size() - 1]] = false;
	B[i].pop_back();
      }
      if ((int)B[i].size() == A[i]) done[i] = true;
    }
  }
  vector<int> C(N);
  rep(i, M) {
    for (int j : B[i])
      C[j] = i;
  }
  rep(i, N)
    cout << C[i] << " ";
  cout << endl;
  return 0;
}
0