結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー okayunonahaokayunonaha
提出日時 2016-10-15 02:01:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,423 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 68,540 KB
実行使用メモリ 10,840 KB
最終ジャッジ日時 2024-11-22 10:36:28
合計ジャッジ時間 82,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
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 TLE -
testcase_17 WA -
testcase_18 TLE -
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 TLE -
testcase_34 WA -
testcase_35 WA -
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 RE -
testcase_46 RE -
testcase_47 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

#define pb push_back

int N, K;

struct team_info {
  int s, p, u, point;
};


vector<team_info> t;
vector<int> ans;
int successt[100005];

bool comp(const team_info &t1, const team_info &t2) {
  if (t1.s == t2.s) {
    if(t1.u < t2.u) {
      return true;
    } else if (t1.u > t2.u) {
      return false;
    } else {
      if(t1.p < t2.p) {
        return true;
      } else {
        return false;
      }
    }
  }
  return t1.s > t2.s;
}

int main(void) {
  cin.tie(0);
  ios::sync_with_stdio(false);

  int S, P, U;
  team_info ti;
  cin >> N >> K;
  for (int i = 0; i < N; i++) {
    cin >> S >> P >> U;
    ti.s = S; ti.p = P; ti.u = U; ti.point = i;
    t.pb(ti);
  }
  sort(t.begin(), t.end(), comp);

  for(int i = 0; i < N; i++) {
    cout << t[i].s << " " << t[i].p << " " << t[i].u << endl;
  }

  int count = 0, i, j;
  int maxp;


  while(count < K) {
    team_info mt = t[0];
    int mi = 0;
    for (i = 1; i < N; i++) {
      if(mt.s > t[i].s) break;

      if(successt[mt.u] > successt[t[i].u]) { mt = t[i]; mi = i; }
      else if(successt[mt.u] == successt[t[i].u]) {
        if(mt.p > t[i].p) {
          mt = t[i]; mi = i;
        }
      }
    }
    ans.pb(mt.point);
    t.erase(t.begin() + mi);
    successt[mt.u]++;
    count++;
  }

  for (int i = 0; i < K; i++) {
    cout << ans[i] << endl;
  }

  return 0;
}
0