結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー koyumeishikoyumeishi
提出日時 2016-10-14 22:59:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 146 ms / 4,000 ms
コード長 4,025 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 128,884 KB
実行使用メモリ 12,140 KB
最終ジャッジ日時 2023-08-14 11:52:31
合計ジャッジ時間 7,405 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
5,276 KB
testcase_01 AC 111 ms
5,460 KB
testcase_02 AC 80 ms
5,524 KB
testcase_03 AC 113 ms
5,520 KB
testcase_04 AC 111 ms
5,416 KB
testcase_05 AC 94 ms
5,464 KB
testcase_06 AC 146 ms
5,328 KB
testcase_07 AC 84 ms
5,088 KB
testcase_08 AC 90 ms
5,456 KB
testcase_09 AC 102 ms
5,312 KB
testcase_10 AC 107 ms
5,716 KB
testcase_11 AC 123 ms
5,716 KB
testcase_12 AC 109 ms
5,460 KB
testcase_13 AC 82 ms
5,908 KB
testcase_14 AC 88 ms
5,788 KB
testcase_15 AC 78 ms
12,140 KB
testcase_16 AC 133 ms
7,300 KB
testcase_17 AC 128 ms
5,588 KB
testcase_18 AC 135 ms
5,976 KB
testcase_19 AC 82 ms
5,904 KB
testcase_20 AC 83 ms
5,528 KB
testcase_21 AC 88 ms
5,640 KB
testcase_22 AC 117 ms
5,572 KB
testcase_23 AC 100 ms
5,484 KB
testcase_24 AC 81 ms
5,452 KB
testcase_25 AC 111 ms
5,532 KB
testcase_26 AC 92 ms
8,716 KB
testcase_27 AC 112 ms
7,716 KB
testcase_28 AC 81 ms
5,900 KB
testcase_29 AC 119 ms
8,444 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 126 ms
5,148 KB
testcase_33 AC 138 ms
5,268 KB
testcase_34 AC 93 ms
5,256 KB
testcase_35 AC 2 ms
4,376 KB
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 2 ms
4,376 KB
testcase_38 AC 2 ms
4,380 KB
testcase_39 AC 3 ms
4,380 KB
testcase_40 AC 3 ms
4,376 KB
testcase_41 AC 10 ms
4,376 KB
testcase_42 AC 10 ms
4,380 KB
testcase_43 AC 14 ms
7,308 KB
testcase_44 AC 10 ms
4,560 KB
testcase_45 AC 4 ms
4,376 KB
testcase_46 AC 23 ms
4,380 KB
testcase_47 AC 23 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <functional>
#include <set>
#include <ctime>
#include <random>
#include <chrono>
#include <cassert>
using namespace std;

namespace {
  using Integer = long long; //__int128;
  template<class T> istream& operator >> (istream& is, vector<T>& vec){for(T& val: vec) is >> val; return is;}
  template<class T> istream& operator ,  (istream& is, T& val){ return is >> val;}
  template<class T> ostream& operator << (ostream& os, const vector<T>& vec){for(int i=0; i<vec.size(); i++) os << vec[i] << (i==vec.size()-1?"":" "); return os;}
  template<class T> ostream& operator ,  (ostream& os, const T& val){ return os << " " << val;}

  template<class H> void print(const H& head){ cout << head; }
  template<class H, class ... T> void print(const H& head, const T& ... tail){ cout << head << " "; print(tail...); }
  template<class ... T> void println(const T& ... values){ print(values...); cout << endl; }

  template<class H> void eprint(const H& head){ cerr << head; }
  template<class H, class ... T> void eprint(const H& head, const T& ... tail){ cerr << head << " "; eprint(tail...); }
  template<class ... T> void eprintln(const T& ... values){ eprint(values...); cerr << endl; }

  class range{
    long long start_, end_, step_;
   public:
    struct range_iterator{
      long long val, step_;
      range_iterator(long long v, long long step) : val(v), step_(step) {}
      long long operator * (){return val;}
      void operator ++ (){val += step_;}
      bool operator != (range_iterator& x){return step_ > 0 ? val < x.val : val > x.val;}
    };
    range(long long len) : start_(0), end_(len), step_(1) {}
    range(long long start, long long end) : start_(start), end_(end), step_(1) {}
    range(long long start, long long end, long long step) : start_(start), end_(end), step_(step) {}
    range_iterator begin(){ return range_iterator(start_, step_); }
    range_iterator   end(){ return range_iterator(  end_, step_); }
  };

  string operator "" _s (const char* str, size_t size){ return move(string(str)); }
  constexpr Integer my_pow(Integer x, Integer k, Integer z=1){return k==0 ? z : k==1 ? z*x : (k&1) ? my_pow(x*x,k>>1,z*x) : my_pow(x*x,k>>1,z);}
  constexpr Integer my_pow_mod(Integer x, Integer k, Integer M, Integer z=1){return k==0 ? z%M : k==1 ? z*x%M : (k&1) ? my_pow_mod(x*x%M,k>>1,M,z*x%M) : my_pow_mod(x*x%M,k>>1,M,z);}
  constexpr unsigned long long operator "" _ten (unsigned long long value){ return my_pow(10,value); }

  inline int k_bit(Integer x, int k){return (x>>k)&1;} //0-indexed

  mt19937 mt(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count());

  template<class T> string join(const vector<T>& v, const string& sep){
    stringstream ss; for(int i=0; i<v.size(); i++){ if(i>0) ss << sep; ss << v[i]; } return ss.str();
  }

  string operator * (string s, int k){ string ret; while(k){ if(k&1) ret += s; s += s; k >>= 1; } return ret; }

}

constexpr long long mod = 9_ten + 7;

int main(){
  int n,k;
  cin >> n,k;

  vector<int> s(n),p(n),u(n);
  for(auto i : range(n) ){
    cin >> s[i],p[i],u[i];
  }

  vector<vector<int>> a(11);
  for(auto i : range(n) ){
    a[s[i]].push_back(i);
  }

  vector<int> unko(100123, 0);

  for(int i : range(10, -1, -1)){
    if(a[i].size() == 0) continue;

    sort(a[i].begin(), a[i].end(), [&](int x, int y){
      if(u[x] != u[y]) return u[x] < u[y];
      else return p[x] < p[y];
    });

    map<int, deque<int>> tmp;
    for(auto j : a[i] ){
      tmp[ unko[ u[j] ] ].push_back( j );
      unko[ u[j] ]++;
    }

    for(auto hoge : tmp){
      auto& pp = hoge.second;
      sort(pp.begin(), pp.end(), [&](int x, int y){
        return p[ x ] < p[ y ];
      });
      while(pp.size() && k){
        println( pp.front() );
        k--;
        pp.pop_front();
      }
    }

    if(k==0) break;
  }

  return 0;
}
0