結果
問題 | No.2680 研究室配属 |
ユーザー | otoshigo |
提出日時 | 2024-03-20 21:12:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 82 ms / 2,000 ms |
コード長 | 1,363 bytes |
コンパイル時間 | 968 ms |
コンパイル使用メモリ | 86,212 KB |
実行使用メモリ | 10,112 KB |
最終ジャッジ日時 | 2024-09-30 06:58:24 |
合計ジャッジ時間 | 2,355 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 4 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 12 ms
5,248 KB |
testcase_11 | AC | 11 ms
5,248 KB |
testcase_12 | AC | 14 ms
5,248 KB |
testcase_13 | AC | 11 ms
5,248 KB |
testcase_14 | AC | 16 ms
5,248 KB |
testcase_15 | AC | 4 ms
5,248 KB |
testcase_16 | AC | 33 ms
5,248 KB |
testcase_17 | AC | 7 ms
5,248 KB |
testcase_18 | AC | 20 ms
5,248 KB |
testcase_19 | AC | 42 ms
5,888 KB |
testcase_20 | AC | 35 ms
5,504 KB |
testcase_21 | AC | 5 ms
5,248 KB |
testcase_22 | AC | 26 ms
5,248 KB |
testcase_23 | AC | 69 ms
7,552 KB |
testcase_24 | AC | 69 ms
7,552 KB |
testcase_25 | AC | 82 ms
10,112 KB |
ソースコード
#include<iostream> #include<algorithm> #include<vector> using namespace std; using ll=long long; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,M; cin>>N>>M; vector<int>A(M); for(int i=0;i<M;i++)cin>>A[i]; vector T(N,vector<int>(M)); for(int i=0;i<N;i++){ for(int j=0;j<M;j++){ cin>>T[i][j]; } } vector<bool>ok(N); vector<int>s(N); vector<vector<int>>V(M); vector<int>at(N); while(1){ bool flag=true; for(int i=0;i<N;i++){ if(ok[i])continue; ok[i]=true; flag=false; V[T[i][s[i]]].push_back(i); } if(flag)break; for(int i=0;i<M;i++){ sort(all(V[i])); while(V[i].size()>A[i]){ ok[V[i].back()]=false; s[V[i].back()]++; V[i].pop_back(); } A[i]-=V[i].size(); for(auto x:V[i]){ at[x]=i; } V[i].clear(); } } for(int i=0;i<N;i++)cout<<at[i]<<" "; cout<<"\n"; }