aboutsummaryrefslogtreecommitdiff
path: root/works/life/chuanzhi-cup/contest/3.cpp
blob: 8f0769df4e3ef31748fc4ce164ddb317967835a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <cstdio>
#include <set>

struct V {
  V(int n, int t, int k) : n(n), t(t), k(k), c(t * k) {}

  int n;
  int t;
  int k;
  const int c;
};

struct C {
  bool operator()(const V &left, const V &right) const {
    if (left.c > right.c)
      return true;
    else if (left.c < right.c)
      return false;
    else if (left.t > right.t)
      return true;
    else if (left.t < right.t)
      return false;
    else if (left.n < right.n)
      return true;
    return false;
  }
};

int main() {
  std::set<V, C> data;

  int n;
  std::scanf("%d", &n);

  for (int i = 1; i <= n; i++) {
    int t, k;
    std::scanf("%d%d", &t, &k);
    data.insert(V{i, t, k});
  }

  for (const auto &v : data) {
    std::printf("%d ", v.n);
  }

  return 0;
}