Search is not available for this dataset
name
stringlengths
2
112
description
stringlengths
29
13k
source
int64
1
7
difficulty
int64
0
25
solution
stringlengths
7
983k
language
stringclasses
4 values
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc= new Scanner(System.in); int n = Integer.parseInt(sc.next());int p = 0;String s = ""; String[] a = new String[n]; for(int i = 0; i < n; i++) { s = sc.next();p = 1100 - Integer.parseInt(sc.next()); a[i] = s + "_" + String.valueOf(p) + "_" + String.valueOf(i+1); } Arrays.parallelSort(a); for(String a_i : a) { System.out.println(a_i.split("_")[2]); } sc.close(); } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); ArrayList<Restaurant> list = new ArrayList<Restaurant>(); int N = sc.nextInt(); for (int i = 1; i <= N; i++) { String name = sc.next(); int point = sc.nextInt(); list.add(new Restaurant(name, point, i)); } Collections.sort(list); for (Restaurant res: list) { System.out.println(res.i); } } } class Restaurant implements Comparable<Restaurant> { String name; int point; int i; public Restaurant(String name, int point, int i) { this.name = name; this.point = point; this.i = i; } @Override public int compareTo(Restaurant obj) { int ans = name.compareTo(obj.name); if (ans != 0){ return ans; } //同じときは、点数で降順にする return Integer.compare(point, obj.point)*-1; } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) lst = [] for i in range(N): s,p = input().split() p=int(p) lst.append((s,-p,i+1)) lst.sort() for e in lst: print(e[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
for x in [j[0] for j in sorted([[i+1,*input().split()] for i in range(int(input()))],key=lambda x: (x[1], -int(x[2])))]: print(x)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<tuple<string,int,int>> p(n); for(int i=0;i<n;i++){ string S; int P; cin>>S>>P; p[i] = make_tuple(S,-P,i+1); } sort(p.begin(),p.end()); for(int i=0;i<n;i++){ cout<<get<2>(p[i])<<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String[] s = new String[n]; int[] p = new int[n]; ArrayList<String> list = new ArrayList<String>(); HashMap<Integer, Integer> map = new HashMap<Integer, Integer>(); for(int i = 0; i < n; i++) { s[i] = sc.next(); p[i] = sc.nextInt(); if(!(list.contains(s[i]))) list.add(s[i]); map.put(p[i], i); } Collections.sort(list); for(int i = 0; i < list.size(); i++) { String str = list.get(i); ArrayList<Integer> list2 = new ArrayList<Integer>(); ArrayList<Integer> list3 = new ArrayList<Integer>(); for(int j = 0; j < n; j++) { if(str.equals(s[j])) { list2.add(j); list3.add(p[j]); } } Collections.sort(list3); for(int j = list3.size() - 1; j >= 0; j--) { System.out.println(map.get(list3.get(j)) + 1); } } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
print(*[_[0] for _ in sorted([[i+1] + input().split() for i in range(int(input()))], key=lambda x:(x[1], -int(x[2])))], sep='\n')
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i = 0;i < (int)(n);i++) int main() { int n, p; string s; cin >> n; map<string, map<int, int>> m; rep(i, n) { cin >> s >> p; m[s][100-p] = i+1; } for(auto pr : m) for(auto x : pr.second) cout << x.second << endl; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) L = [] for i in range(N): s,p = input().split() L.append([s, 100-int(p), i+1]) L.sort() for j in L: print(j[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; vector<tuple<string,int,int>> K; for(int i=0;i<N;i++){ string S; int P; cin >> S >> P; K.push_back(make_tuple(S,100-P,i+1)); } sort(K.begin(),K.end()); for(int i=0;i<N;i++){ cout << get<2>(K.at(i)) << endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n = int(input()) a = [] for i in range(1,n+1): s, p = input().split() a.append((s, -1*int(p), i)) a.sort() for i in a: print(i[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; vector<tuple<string,int,int>>a; for(int i=1; i<n+1; i++){ string s; int p; cin >> s >> p; p*=-1; a.emplace_back(s,p,i); } sort(a.begin(), a.end()); for(int i=0; i<n; i++){ cout << get<2>(a[i]) << endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include<bits/stdc++.h> using namespace std; int main(){ int N; cin>>N; vector<tuple<string,int,int>> A(N); for(int i=0;i<N;i++){ string s; int j; cin>>s>>j; A[i]=make_tuple(s,100-j,i+1); } sort(A.begin(),A.end()); for(int i=0;i<N;i++){ int j=(get<2>(A[i])); cout<<j<<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) f = lambda i,x: (x[0], -int(x[1]), i) R = sorted(f(i,input().split()) for i in range(N)) for _,_,i in R: print(i+1)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; import java.util.stream.Collectors; public class Main{ public static void main(String[] args) { Scanner in =new Scanner(System.in); int n = in.nextInt(); in.nextLine(); Restrant[] rest=new Restrant[n]; Restrantrating rating=new Restrantrating(); for(int i=0;i<n;i++) { rest[i]=new Restrant(i+1,in.next(),in.nextInt()); } Arrays.sort(rest,rating); for(int i=0;i<n;i++) { System.out.println(rest[i].num); } } } class Restrant{ int num; String city; int score; Restrant(int num,String city, int score){ this.num=num; this.city=city; this.score=score; } } class Restrantrating implements Comparator<Restrant>{ public int compare(Restrant a, Restrant b){ if( !(a.city.equals(b.city)) ){ return a.city.compareTo(b.city); } else return b.score-a.score; } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Comparator; import java.util.Map; import java.util.Scanner; import java.util.TreeMap; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Map<String,Map<Integer,Integer>> restaurants = new TreeMap<>(); int N=sc.nextInt(); for(int i=0;i<N;i++) { String str = sc.next(); int n = sc.nextInt(); if(!restaurants.containsKey(str)) { restaurants.put(str, new TreeMap<>(Comparator.reverseOrder())); } restaurants.get(str).put(n,i+1); } for(Map.Entry<String,Map<Integer,Integer>> e: restaurants.entrySet()) { for(Map.Entry<Integer,Integer> ee : e.getValue().entrySet()) { System.out.println(ee.getValue()); } } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) l=[] for i in range(n): s,p=input().split() p=-int(p) l.append([s,p,i+1]) l.sort() for i in l: print(i[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
def nig (x,y): if x[0] == y[0]: return -1 if x[1]>y[1] else 1 return -1 if x[0] < y[0] else 1 cuc_fuk = [] for x in range(input()): a,b = raw_input().split() cuc_fuk.append((a,int(b),x+1)) for piss in sorted(cuc_fuk, cmp = nig ): print piss[2]
PYTHON
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; vector<tuple<string,int,int>>a; for(int i=1;i<=n;i++) { string s; int p; cin>>s>>p; p=-p; a.push_back(make_tuple(s,p,i)); } sort(a.begin(),a.end()); for(int i=0;i<n;i++) { cout<<get<2>(a[i])<<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Scanner; import java.util.stream.Collectors; import java.util.stream.IntStream; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String[] S = new String[N]; int[] P = new int[N]; for (int i = 0; i < N; ++i) { S[i] = sc.next(); P[i] = sc.nextInt(); } System.out.println(solve(S, P)); sc.close(); } static String solve(String[] S, int[] P) { return IntStream.range(0, S.length).boxed() .sorted((i1, i2) -> !S[i1].equals(S[i2]) ? S[i1].compareTo(S[i2]) : -Integer.compare(P[i1], P[i2])) .map(i -> String.valueOf(i + 1)).collect(Collectors.joining("\n")); } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) l=[] for i in range(n): a,b=input().split() b=-(int(b)) l.append([a,b,i+1]) l=sorted(l) for i in l: print(i[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); String array[][] = new String[num][3]; for(int i = 0; i < num; i ++) { array[i][0] = sc.next(); array[i][1] = sc.next(); array[i][2] = String.valueOf(i + 1); } Arrays.sort(array, (a, b) -> Integer.compare(Integer.parseInt(b[1]), Integer.parseInt(a[1]))); Arrays.sort(array, (a, b) -> a[0].compareTo(b[0])); for(int i = 0; i < num; i ++) { System.out.println(array[i][2]); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<tuple<string, int , int >> a; for (int i = 1; i <= n; i++) { string s; int p; cin >> s >> p; p = -p; a.emplace_back(s, p, i); } sort(a.begin(), a.end()); for (int i = 0; i < n; i++) { cout << get<2>(a[i]) << endl; } return 0; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) L = [] for i in range(N): N, K = input().split() K = int(K) L.append([N, -K, i+1]) L.sort() for i in L: print(i[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); List<Rest> l=new ArrayList<>(n); for(int i=1;i<=n;i++){ l.add(new Rest(i,sc.next(),sc.nextInt())); } Collections.sort(l); for(int i=0;i<n;i++){ System.out.println(l.get(i)); } } static class Rest implements Comparable{ int num; String city; int point; Rest(int n,String s,int p){ num=n; city=s; point=p; } public int compareTo(Object o){ if(city.compareTo(((Rest)o).city)!=0){ return city.compareTo(((Rest)o).city); } return ((Rest)o).point-point; } public boolean equals(Object o){ return num==((Rest)o).num; } public String toString(){ return String.valueOf(num); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main(){ int N; cin>>N; vector<tuple<string,int,int>> res; for(int i=1;i<=N;i++){ string S; int P; cin>>S>>P; res.push_back(make_tuple(S,100-P,i)); } sort(res.begin(),res.end()); for(int i=0;i<N;i++){ cout<<get<2>(res.at(i))<<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <iostream> #include <bits/stdc++.h> using namespace std; char in[120]; pair<pair<string,int>,int> p[110]; int main(){ int a; cin>>a; for(int i=0;i<a;i++){ int t; cin>>in>>t; string tmp=in; p[i]=make_pair(make_pair(in,-t),i); } std::sort(p,p+a); for(int i=0;i<a;i++) cout<<p[i].second+1<<"\n"; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int N; cin>>N; vector<tuple<string,int,int>> vec(N); for(int i=0; i<N; i++){ string a; int b; cin>>a; cin>>b; vec.at(i)=make_tuple(a,-b,i+1); } sort(vec.begin(), vec.end()); for(auto x:vec){ cout << get<2>(x) << endl; } return 0; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
print('\n'.join([str(s[2])for s in sorted([input().split()+[i+1]for i in range(int(input()))],key=lambda x:(x[0],-int(x[1])))]))
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; string s; int p; vector<tuple<string,int,int>> vec; for(int i=0;i<N;i++){ cin >> s >> p; vec.push_back(make_tuple(s,100-p,i+1)); } sort(vec.begin(),vec.end()); for(int i=0;i<N;i++){ int rank; cout << get<2>(vec.at(i)) << endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; class Restaurant { public int index; public String city; public int point; public Restaurant(int index, String city, int point) { this.index = index; this.city = city; this.point = point; } } class CityComparator implements Comparator<Restaurant> { @Override public int compare(Restaurant r1, Restaurant r2) { if (!r1.city.equals(r2.city)) { return r1.city.compareTo(r2.city); } else { return r1.point > r2.point ? -1 : 1; } } } public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); List<Restaurant> restaurants = new ArrayList<Restaurant>(); for (int i = 0; i < N; i++) { restaurants.add(new Restaurant(i + 1, sc.next(), sc.nextInt())); } sc.close(); // sort Collections.sort(restaurants, new CityComparator()); restaurants.forEach(r -> { System.out.println(r.index); }); } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) L = [] for i in range(N): a,b = input().split() L.append([a,100-int(b),i+1]) L.sort() for i in range(N): print(L[i][2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String[] args) throws Exception { // Your code here! Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String[][] ab = new String[n][3]; for (int i = 0; i < n; i++) { ab[i][0] = sc.next(); ab[i][1] = sc.next(); ab[i][2] = String.valueOf(i + 1); } Arrays.sort(ab, (a, b) -> Integer.compare(Integer.parseInt(b[1]), Integer.parseInt(a[1]))); Arrays.sort(ab, (a, b) -> a[0].compareTo(b[0])); for (String[] a : ab) { System.out.println(a[2]); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String[] book = new String[n]; for(int i = 1; i <= n; i++) { String s = sc.next(); int temp = sc.nextInt(); s = s + " " + 1/(double)temp + " " + i; book[i-1] = s; } Arrays.sort(book); for(String ans:book) { System.out.println(ans.split(" ")[2]); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int number = scan.nextInt(); String[] info = new String[number]; for (int i = 0; i < number; i++) { // 都市名、スコア、番号 info[i] = scan.next() + "," + (Integer.MAX_VALUE - scan.nextInt()) + "," + (i+1); } Arrays.sort(info); for (String str : info) { String ans = str.split(",")[2]; System.out.println(ans); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
from operator import itemgetter N = input() t = [] for i in range(N): s,p = raw_input().split() p2 = int(p) t.append([s,p2,i+1]) t2 = sorted(t,key = itemgetter(1), reverse = True) t3 = sorted(t2,key = itemgetter(0)) for c in t3: print(c[2])
PYTHON
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) l=[list(input().split()) for _ in range(n)] a=sorted(l,key=lambda x:(x[0],-int(x[1]))) for x in a: print(l.index(x)+1)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Map; import java.util.Scanner; import java.util.TreeMap; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); Map<String, Integer> data = new TreeMap<>(); for (int i = 0; i < n; i++) { String city = sc.next(); int point = sc.nextInt(); data.put(city + (1100 - point), i + 1); } for (String key : data.keySet()) { System.out.println(data.get(key)); } sc.close(); } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include<iostream> using namespace std; int main(){ int N; cin >> N; pair<pair<string, int>, int> S[100]; for(int i=0; i<N; i++){ string s; int p; cin >> s >> p; S[i] = make_pair(make_pair(s, -p), i); } sort(S,S+N); for(int i=0; i<N; i++){ cout << S[i].second+1 << endl; } return 0; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Comparator; import java.util.Scanner; import java.util.TreeMap; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); TreeMap<String, TreeMap<Integer, Integer>> map = new TreeMap<String, TreeMap<Integer, Integer>>(); for (int i = 0; i < n; i++) { String s = sc.next(); int p = sc.nextInt(); int ord = i + 1; if (map.containsKey(s)) { map.get(s).put(p, ord); } else { TreeMap<Integer, Integer> maptmp = new TreeMap<Integer, Integer>(Comparator.reverseOrder()); maptmp.put(p, ord); map.put(s, maptmp); } } for (String key : map.keySet()) { for (int p : map.get(key).keySet()) { System.out.println(map.get(key).get(p)); } } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; import static java.lang.System.*; class Guidebook implements Comparable<Guidebook>{ public String city; public int score; public int number; public int compareTo(Guidebook obj){ if(this.city.equals(obj.city)){ return obj.score - this.score; }else{ return this.city.compareTo(obj.city); } } } class Main { public static final int MOD = 1000000007; public static final int INF = 1000000000; public static void main(String[] args) { Scanner sc = new Scanner(in); int N = sc.nextInt(); Guidebook X[] = new Guidebook[N]; for(int i=0; i<N; i++){ X[i] = new Guidebook(); X[i].city = sc.next(); X[i].score = sc.nextInt(); X[i].number = i+1; } Arrays.sort(X); for(int i=0; i<N; i++){ out.println(X[i].number); } } public static int gcd(int a, int b){ if(b == 0) return a; return gcd(b, a%b); } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String[] s = new String[N]; for (int i = 0; i < N; i++) { String s_ = sc.next(); int n_ = sc.nextInt(); int distance = 100 - n_; s_ = s_ + "/" + String.format("%03d", distance) + "/" + String.format("%03d", i); s[i] = s_; } sc.close(); Arrays.sort(s); for (int i = 0; i < N; i++) { String[] r = s[i].split("/"); System.out.println(Integer.valueOf(r[2]) + 1); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; map<pair<string, int>, int> kek; for (int i = 1; i <= n; ++i) { string a; int score; cin >> a >> score; kek[{a, -score}] = i; } for (auto &tmp : kek) cout << tmp.second << '\n'; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) l=[input().split() + [i+1] for i in range(n)] l=sorted(l,key=lambda x:(x[0],-int(x[1]))) print(*[s[2] for s in l],sep='\n')
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.ArrayList; import java.util.Comparator; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner $ = new Scanner(System.in); int N = $.nextInt(); int id =1; List<Town> ts = new ArrayList<>(); while(N-- != 0){ Town t = new Town(); t.id = id; id++; t.town = $.next(); t.ten = $.nextInt(); ts.add(t); } Comparator<Town> com = (t1, t2) -> t1.town.compareTo(t2.town); Comparator<Town> comX = (t1,t2) -> t2.ten - t1.ten; ts.sort(com.thenComparing(comX)); ts.forEach(tX-> System.out.println(tX.id)); } static class Town { String town; int ten; int id; } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> #include <string> using namespace std; char in[120]; pair<pair<string,int>,int> p[110]; int main(){ int a;scanf("%d",&a); for(int i=0;i<a;i++){ int t;scanf("%s%d",in,&t); string tmp=in; p[i]=make_pair(make_pair(in,-t),i); } std::sort(p,p+a); for(int i=0;i<a;i++)printf("%d\n",p[i].second+1); }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) d=sorted(list(list(input().split())+[i+1] for i in range(n)),key=lambda x:(x[0],-int(x[1]))) for v in d:print(v[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include<bits/stdc++.h> #include<iostream> #include<algorithm> using namespace std; int main() { int n; cin>> n; vector<tuple<string,int, int>> asp; for(int i=0;i<n;i++){ string s; int p; cin>>s>>p; asp.emplace_back(s, 100-p, i+1 ); } sort(begin(asp),end(asp)); for(int i=0;i<n;i++){ cout<< get<2>(asp[i]) <<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); String[] s=new String[n]; int[] p=new int[n]; String[] sp=new String[n]; for(int i=0;i<n;i++){ s[i]=sc.next(); p[i]=sc.nextInt(); sp[i]=s[i]+"_"+(1100-p[i])+"_"+(i+1); } Arrays.sort(sp); for(String k:sp){ String ans=k.split("_")[2]; System.out.println(ans); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) ans = [] for i in range(N): s, p = input().split() ans += [[s, -int(p), i+1]] ans.sort() for a in ans: print(a[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include<bits/stdc++.h> using namespace std; int main(){ int A; cin >> A; vector<pair<pair<string,int>,int>>P(A); for(int i=0;i<A;i++){ cin >> P[i].first.first >> P[i].first.second; P[i].second=i+1; P[i].first.second*=-1; } sort(P.begin(),P.end()); for(int i=0;i<A;i++)cout << P[i].second << endl; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; import static java.util.Comparator.*; class Main{ public static void main(String[] args) { Scanner stdIn = new Scanner(System.in); int n = stdIn.nextInt(); String[] s = new String[n]; for(int i = 0; i < n ; i++) s[i] = (stdIn.next() + "_" + (1100 - stdIn.nextInt()) + "_" + (i +1)); Arrays.sort(s); for(String i: s) System.out.println(i.split("_")[2]); } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main {//atcoder ABC128B - public static void main(String[] args) { Scanner seer = new Scanner(System.in); int n = seer.nextInt(); Res[] rs = new Res[n]; for(int i = 0; i < n; i++){ String name = seer.next(); int p = seer.nextInt(); rs[i] = new Res(name, p, i+1); } Arrays.sort(rs); for(int i = 0; i < n; i++){ System.out.println(rs[i].index); } } static class Res implements Comparable<Res>{ String name; int score; int index; public Res(String name, int score, int index){ this.name = name; this.score = score; this.index = index; } @Override public int compareTo(Res arg0) { if(name.equals(arg0.name)){ return arg0.score - score; } else return name.compareTo(arg0.name); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; import java.util.Arrays; import java.util.Comparator; import java.util.TreeMap; import java.util.Map; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int num = Integer.parseInt(br.readLine()); Map<String, Integer> map = new TreeMap<String, Integer>(); for (int i = 0; i < num; i++) { String[] tmp = br.readLine().split(" "); String point = ("0".equals(tmp[1])) ? "XXX" : String.valueOf(1000 - Integer.parseInt(tmp[1])); map.put(tmp[0] + point, i + 1); } for (String key : map.keySet()) { System.out.println(map.get(key)); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; char in[120]; pair<pair<string,int>,int> p[110]; int main(){ int a;scanf("%d",&a); for(int i=0;i<a;i++){ int t;scanf("%s%d",in,&t); string tmp=in; p[i]=make_pair(make_pair(in,-t),i); } std::sort(p,p+a); for(int i=0;i<a;i++)printf("%d\n",p[i].second+1); }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) a=[list(input().split())+[i] for i in range(n)] for i in range(n): a[i][1]=-int(a[i][1]) a.sort() for _,_,i in a: print(i+1)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; vector<tuple<string,int,int>>a(n); for(int i=0;i<n;i++){ string s; int k; cin>>s>>k; a.at(i)=make_tuple(s,100-k,i+1); } sort(a.begin(),a.end()); for(int i=0;i<n;i++){ cout<<get<2>(a.at(i))<<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n = int(raw_input()) ans = [] for i in range(0, n): s, p = raw_input().split(" ") p = int(p) ans.append((s, p * -1, i + 1)) sort = sorted(ans) for i in range(0, len(sort)): city, point, index = sort[i] print(index)
PYTHON
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); Map<String, Map<Integer,Integer>> map = new TreeMap<>(); for(int i = 0; i < N; i++){ String S = sc.next(); Map<Integer, Integer> map2 = map.get(S); if (map2 == null) { map2 = new TreeMap<>( (s1, s2) -> s2 - s1 ); map.put(S, map2); } int P = sc.nextInt(); map2.put(P, i+1); } for( String key : map.keySet() ){ Map<Integer, Integer> m2 = map.get(key); for( int i : m2.keySet() ){ System.out.println(m2.get(i)); } } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N=input() L=[] for i in range(N): s,p=raw_input().split() L.append( [s , int(p),i+1] ) L.sort(key=lambda x:(x[0],-x[1]) ) for x,y,z in L: print z
PYTHON
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String[] S = new String[N]; int[] P = new int[N]; String[] T = new String[N]; for(int i = 0; i < N; i++) { S[i] = sc.next(); P[i] = sc.nextInt(); T[i] = S[i]; } Arrays.sort(T); Map<Integer, Integer> x = new TreeMap<>(Collections.reverseOrder()); for(int i = 0; i < N; i++) { if(i == 0 || !T[i].equals(T[i - 1])) { for(int j = 0; j < N; j++) { if(T[i].equals(S[j])) { x.put(P[j], j); } } for(Integer k : x.values()) { System.out.println(k + 1); } } x.clear(); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n = int(input()) r = [input().split() + [i+1] for i in range(n)] o = sorted(r,key=lambda x:(x[0],-int(x[1]))) [print(o[i][2]) for i in range(n)]
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N=int(input()) a = [] for i in range(N): S,P = input().split() P = int(P) a.append([S,-P,i+1]) a.sort() for a_ in a: print(a_[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int N=sc.nextInt(); Restaurant[] r=new Restaurant[N]; for(int i=0;i<N;i++) r[i]=new Restaurant(sc.next(),sc.nextInt(),i+1); Arrays.sort(r); for(int i=0;i<N;i++) { System.out.println(r[i].row); } sc.close(); } } class Restaurant implements Comparable<Object>{ String name; int score; int row; public Restaurant(String name,int score,int row) { this.name=name; this.score=score; this.row=row; } public int compareTo(Object object) { Restaurant r=(Restaurant)object; if(this.name.compareTo(r.name)==0) { return r.score-this.score; }else { return this.name.compareTo(r.name); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<tuple<string, int, int>>a; for (int i = 1; i <= n; i++) { string s; int p; cin >> s >> p; a.emplace_back(s, -p, i); } sort(a.begin(), a.end()); for (int i = 0; i < n; i++) { cout << get<2>(a[i]) << endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) L=[] for i in range(n): s,p=map(str,input().split()) L.append((s,int(p)*-1,i+1)) L.sort() for l in L: print(l[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = Integer.valueOf(sc.nextLine()); String sArray[] = new String[N]; String sArraySub[] = new String[N]; for (int i = 0; i < N; i++) { sArray[i] = sc.nextLine(); sArraySub[i] = sArray[i].split(" ")[0] + " " + (Integer.valueOf(sArray[i].split(" ")[1]) - 1100); } List lst = new ArrayList<String>(); lst = Arrays.asList(sArraySub); Collections.sort(lst); for (int i = 0; i < N; i++) { sArraySub[i] = sArraySub[i].split(" ")[0] + " " + (Integer.valueOf(sArraySub[i].split(" ")[1]) + 1100); } for (int i = 0; i < N; i++) { System.out.println(Arrays.asList(sArray).indexOf(lst.get(i)) + 1); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) L=[] for i in range(n): a,b=input().split() L+=[[a,-int(b),i+1]] L.sort() for i in L: print(i[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) SP = [input().split() + [i] for i in range(N)] SP.sort(key = lambda x: (x[0], -int(x[1]))) for _,_,i in SP: print(i+1)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.HashSet; import java.util.Scanner; import java.util.Set; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String S[] = new String[N]; int P[] = new int[N]; for (int i=0; i<N; i++){ S[i] = sc.next(); P[i] = sc.nextInt(); } Set<Integer> printed = new HashSet<Integer>(); for (int i=0; i<N; i++){ String tempS = "zzzzzzzzzz"; int tempP = 0; int tempIndex = 0; for (int j=0; j<N; j++){ if (!printed.contains(j)) { if (tempS.compareTo(S[j]) > 0 || (tempS.compareTo(S[j]) == 0 && tempP < P[j])){ tempS = S[j]; tempP = P[j]; tempIndex = j; } } } System.out.println(tempIndex + 1); printed.add(tempIndex); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.Scanner; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); List<String> s = new ArrayList<>(); String[][] sp = new String[N][2]; sc.nextLine(); for(int i=0;i<N;i++) { String[] line = sc.nextLine().split(" "); sp[i][0] = line[0]; sp[i][1] = String.format("%03d", Integer.parseInt(line[1])); s.add(sp[i][0] + "_" + sp[i][1]); } Arrays.sort(sp,(a,b)-> (a[0].equals(b[0])) ? b[1].compareTo(a[1]) : a[0].compareTo(b[0])); for(int i=0;i<N;i++) { System.out.println(s.indexOf(sp[i][0] + "_" + sp[i][1]) + 1); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; vector<tuple<string, int, int>> p(N); string S; int P; for (int i = 0; i < N; i++) { cin >> S >> P; p.at(i) = make_tuple(S, -P, i + 1); } sort(p.begin(), p.end()); for (auto elem : p) { cout << get<2>(elem) << endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int N = Integer.parseInt(sc.next()); String ary[][] = new String[N][3]; for(int i = 0; i < N; i++) { ary[i][0] = sc.next(); ary[i][1] = sc.next(); ary[i][2] = i + ""; } Arrays.sort(ary, (a, b) -> Integer.compare(Integer.parseInt(b[1]), Integer.parseInt(a[1]))); Arrays.sort(ary, (a, b) -> a[0].compareTo(b[0])); for(int i = 0; i < N; i++) { System.out.println(Integer.parseInt(ary[i][2]) + 1); } } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
// B - Guidebook #include <bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<tuple<string,int,int>> sp; for(int i=0; i<n; ++i){ string s; int p; cin>>s>>p; sp.push_back(make_tuple(s, -p, i+1)); } sort(sp.begin(), sp.end()); for(auto e:sp) cout<< get<2>(e) <<endl; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N=int(input()) arr=[(0,0,0)]*N for i in range(N): S,P = input().split() arr[i] = (S,-int(P),i+1) arr.sort() for _,_,i in arr: print(i)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include"bits/stdc++.h" #include"math.h" using namespace std; int main(){ int n; cin >> n; vector<tuple<string , int , int>> S; for(int i=0; i<n; i++){ string s; int p; cin >> s >> p; S.push_back(make_tuple(s , 100-p , i+1));} sort(S.begin(),S.end()); for(auto x:S) {cout << get<2>(x) << endl;} }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; vector<tuple<string,int,int>> t; for(int i=0;i<N;i++){ string s; int a; cin >> s >> a; t.push_back(make_tuple(s,-1*a,i+1)); } sort(t.begin(),t.end()); for(int i=0;i<N;i++){ cout << get<2>(t.at(i)) << endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) a=[] for i in range(N): s, p = input().split() a.append((s,-int(p),i+1)) a.sort() for i in range(N): print(a[i][2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n = int(input()) SPN = [] for i in range(n): s,p = input().split() SPN.append([s,-int(p),i+1]) SPN.sort() for s,p,n in SPN: print(n)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N=int(input()) L=[] for i in range(N): a,p=input().split() L.append([a,-int(p),i]) L.sort() for i in range(N): print(L[i][2]+1)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
print(*sorted(range(1,int(input())+1),key=lambda _:[(s,-int(p))for s,p in[input().split()]]))
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N =int(raw_input()) S =[] P =[] for i in range(N): s,p=map(str,raw_input().split()) S.append(s) P.append(int(p)) ss=sorted(list(set(S))) for sss in ss: a =[] b =[] for j in range(N): if sss==S[j]: a.append(j) b.append(P[j]) if len(b)>0: c = sorted(b,reverse=True) #print c,b for k in c: for j in range(len(b)): if k == b[j]: print(a[j]+1)
PYTHON
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
for*_,i in sorted((t.split()[0],-int(t.split()[-1]),i)for i,t in enumerate(open(0)))[1:]:print(i)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N = int(input()) SP = [] for i in range(N): S,P = input().split() P = int(P) SP.append((S,-P,i+1)) SP.sort() for a,b,c in SP: print(c)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n=int(input()) l=[] for i in range(n): x,y=input().split() y=int(y) l.append([x,-y,i+1]) l.sort() for i in l: print(i[2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
lst = [input().split()+[str(i+1)] for i in range(int(input()))] print("\n".join([i[2] for i in sorted(lst, key=lambda x:(x[0], -1*int(x[1])))]))
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main(){ int n;cin >> n; pair<pair<string, int>, int> p[110]; for(int i=0;i<n;++i){ string s;int score; cin >> s >> score; p[i] = make_pair(make_pair(s, -score), i); } sort(p, p+n); for(int i=0;i<n;++i)cout << p[i].second+1 << endl; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N=int(input()) X=[] for i in range(1,N+1): S,P=input().split() X.append((S,-int(P),i)) X.sort() for (_,_,c) in X: print(c)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n = int(input()) a = [] for i in range(n): s, p = input().split() a.append([s, -int(p),i+1]) b=sorted(a) for i in range(n): print(b[i][2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; vector<tuple <string,int,int>> R(N); for (int i=0; i<N; i++){ string S; int P; cin >> S >> P; R.at(i) = make_tuple(S,100-P,i+1); } sort(R.begin(),R.end()); for (int i=0; i<N; i++){ cout << get<2>(R.at(i)) << endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include<bits/stdc++.h> using namespace std; int main(){ int N;cin>>N; string s;int p; vector<pair<string,pair<int,int>>> vec; for(int i=0;i<N;i++){ cin>>s>>p; vec.push_back(make_pair(s,make_pair(-p,i))); }sort(vec.begin(),vec.end()); for(int i=0;i<N;i++){ cout<<vec[i].second.second+1<<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
n = int(input()) l =[] for i in range(n): s,p = input().split() p = int(p) l.append([s,-p,i+1]) l.sort() for k in range(n): print(l[k][2])
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String[] $$) throws Exception { Scanner $ = new Scanner(System.in); int N = $.nextInt(), pmax = 100; String[] P = new String [N]; for (int i = 0; i < N; i++){ P[i] = $.next() + "_" + (pmax * 11 - $.nextInt()) + "_" + (i + 1); } Arrays.sort(P); for (int i = 0; i < N; i++){ System.out.println(P[i].split("_")[2]); } /* 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 -> 3 4 6 1 5 2 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 -> 10 9 8 7 6 5 4 3 2 1 */ } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include<bits/stdc++.h> using namespace std; int main() { int n,i; cin>>n; vector<tuple<string,int,int>> t(n); for(i=0;i<n;i++) { cin>>get<0>(t.at(i))>>get<1>(t.at(i)); get<1>(t.at(i))=-get<1>(t.at(i)); get<2>(t.at(i))=i; } sort(t.begin(),t.end()); for(i=0;i<n;i++) cout<<get<2>(t.at(i))+1<<endl; }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include <bits/stdc++.h> using namespace std; vector< pair< pair<string, int>, int> >cook; int main(){ int n; cin>>n; for(int i=0;i<n;i++){ string s; cin>>s; int p; cin>>p; cook.push_back(make_pair(make_pair(s,-p), i+1)); } sort(cook.begin(), cook.end()); for(int j=0;j<n;j++){ cout<<cook[j].second<<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<tuple<string,int,int>>a; for(int i=1;i<=n;++i){ string s; int p; cin>>s>>p; p=-p; a.push_back(tie(s,p,i)); } sort(a.begin(),a.end()); for(int i=0;i<n;i++){ cout<<get<2>(a[i])<<endl; } }
CPP
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
N=int(input()) data=[] for i in range(N): S,P=input().split() P=int(P) data.append((S,-P,i+1)) data.sort() for _,_,i in data: print(i)
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
print(*[s[2]for s in sorted([input().split()+[i+1]for i in range(int(input()))],key=lambda x:(x[0],-int(x[1])))],sep='\n')
PYTHON3
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.*; public class Main { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); Map<String, Integer> data = new TreeMap<String, Integer>(); for(int i=1; i<n+1; i++){ String town = sc.next(); int point = sc.nextInt(); data.put(town+(200-point), i); } for(String key: data.keySet()){ System.out.println(data.get(key)); } sc.close(); } }
JAVA
p03030 AtCoder Beginner Contest 128 - Guidebook
You have decided to write a book introducing good restaurants. There are N restaurants that you want to introduce: Restaurant 1, Restaurant 2, ..., Restaurant N. Restaurant i is in city S_i, and your assessment score of that restaurant on a 100-point scale is P_i. No two restaurants have the same score. You want to introduce the restaurants in the following order: * The restaurants are arranged in lexicographical order of the names of their cities. * If there are multiple restaurants in the same city, they are arranged in descending order of score. Print the identification numbers of the restaurants in the order they are introduced in the book. Constraints * 1 ≤ N ≤ 100 * S is a string of length between 1 and 10 (inclusive) consisting of lowercase English letters. * 0 ≤ P_i ≤ 100 * P_i is an integer. * P_i ≠ P_j (1 ≤ i < j ≤ N) Input Input is given from Standard Input in the following format: N S_1 P_1 : S_N P_N Output Print N lines. The i-th line (1 ≤ i ≤ N) should contain the identification number of the restaurant that is introduced i-th in the book. Examples Input 6 khabarovsk 20 moscow 10 kazan 50 kazan 35 moscow 60 khabarovsk 40 Output 3 4 6 1 5 2 Input 10 yakutsk 10 yakutsk 20 yakutsk 30 yakutsk 40 yakutsk 50 yakutsk 60 yakutsk 70 yakutsk 80 yakutsk 90 yakutsk 100 Output 10 9 8 7 6 5 4 3 2 1
6
0
import java.util.Arrays; import java.util.Comparator; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.next()); restaurant[] res = new restaurant[n]; for(int i = 0; i < n; i++) { res[i] = new restaurant(sc.next(),sc.nextInt(),i+1); } Arrays.sort(res, new Comparator<restaurant>(){ public int compare(restaurant R1, restaurant R2) { if(R1.name.equals(R2.name)) { return R2.point - R1.point; } return R1.name.compareTo(R2.name); }}); for(restaurant r : res) System.out.println(r.num); sc.close(); } static class restaurant{ private final String name; private final int point; private final int num; restaurant(String name, int point, int num){ this.name = name; this.point = point; this.num = num; } } }
JAVA