結果
問題 | No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい |
ユーザー | femto |
提出日時 | 2016-10-15 00:22:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,441 bytes |
コンパイル時間 | 1,360 ms |
コンパイル使用メモリ | 113,548 KB |
実行使用メモリ | 75,280 KB |
最終ジャッジ日時 | 2024-11-22 08:50:30 |
合計ジャッジ時間 | 22,253 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 65 ms
73,088 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <cstring> #include <string> #include <algorithm> #include <iomanip> #include <cmath> #include <cassert> #include <map> #include <set> #include <queue> using namespace std; struct T { int s, p, u, id; bool operator < (const T& t) const { return p < t.p; } }; deque<T> ts[100010]; int sum[11]; int sel[100010]; vector<int> rnk[100010]; int main() { cin.tie(0); ios::sync_with_stdio(false); int N, K; cin >> N >> K; for(int i = 0; i < N; i++) { T t; cin >> t.s >> t.p >> t.u; t.id = i; ts[t.u].push_back(t); sum[t.s]++; } for(int i = 0; i < 100010; i++) { sort(ts[i].begin(), ts[i].end()); } vector<int> ans; while(1) { for(int s = 10; s >= 0; s--) { if(sum[s] == 0) continue; for(int u = 0; u < 100010; u++) { if(ts[u].size() && ts[u].front().s == s) rnk[sel[u]].push_back(u); } for(int r = 0; r < 100010; r++) { if(rnk[r].size() == 0) continue; vector<T> temp; for(int u : rnk[r]) { temp.push_back(ts[u][0]); } sort(temp.begin(), temp.end()); for(T t : temp) { ans.push_back(t.id); if(ans.size() == K) { for(int v : ans) { cout << v << endl; } return 0; } sum[s]--; ts[t.u].pop_front(); sel[t.u]++; if(ts[t.u].size() && ts[t.u].front().s == s) { rnk[sel[t.u]].push_back(t.u); } } rnk[r].clear(); if(sum[s] == 0) break; } } } }