×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#28760:
11030067@mail.hpsh.tp.edu.tw
(和平110級鄧雨珊)
學校 : 臺北市立和平高級中學
編號 : 163096
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
e788.
b3.畢業典禮(Ceremony)
--
2019年
12月
TOI
練習賽
| From: [219.85.177.13] | 發表日期 : 2021-12-30 22:53
#include
<
iostream
>
#include
<
algorithm
>
using
namespace
std
;
class
student
{
public
:
int
id
;
string no
;
string name
;
};
bool
cmp
(
student i
,
student j
){
if
(
i
.
no
[
8
]==
j
.
no
[
8
]){
if
(
i
.
no
[
0
]==
j
.
no
[
0
]){
return
i
.
id
<
j
.
id
;
}
else
{
return
i
.
no
[
0
]<
j
.
no
[
0
];
}
}
else
{
return
i
.
no
[
8
]<
j
.
no
[
8
];
}
}
int
main
(){
ios::sync_with_stdio
(
0
);
cin
.
tie
(
0
);
int
n
;
string s
;
student a
[
100
];
cin
>>
n
;
for
(
int
i
=
0
;
i
<
n
;
i
++){
cin
>>
a
[
i
].
no
>>
a
[
i
].
name
,
a
[
i
].
id
=
i
;
}
sort
(
a
,
a
+
n
,
cmp
);
for
(
int
i
=
0
;
i
<
n
;
i
++){
cout
<<
a
[
i
].
no
[
8
]
<<
": "
<<
a
[
i
].
name
<<
endl
;
}
}
ZeroJudge Forum