栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

P4414 [COCI2006-2007#2] ABC

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

P4414 [COCI2006-2007#2] ABC

P4414 [COCI2006-2007#2] ABC 题目描述

You will be given three integers A, B and C. The numbers will not be given in that exact order, but we do know that A is less than B and B less than C. In order to make for a more pleasant viewing, we want to rearrange them in the given order.

输入格式

The first line contains three positive integers A, B and C, not necessarily in that order. All three numbers will be less than or equal to 100. The second line contains three uppercase letters ‘A’, ‘B’ and ‘C’ (with no spaces between them) representing the desired order.

输出格式

Output the A, B and C in the desired order on a single line, separated by single spaces.

题意翻译

【题目描述】

三个整数分别为 A,B,C。这三个数字不会按照这样的顺序给你,但它们始终满足条件:A<B<C。为了看起来更加简洁明了,我们希望你可以按照给定的顺序重新排列它们。

【输入格式】

第一行包含三个正整数A,B,C,不一定是按这个顺序。这三个数字都小于或等于100。第二行包含三个大写字母ABC(它们之间没有空格)表示所需的顺序。

【输出格式】

在一行中输出 ABC,用一个 (空格)隔开。

感谢 @smartzzh 提供的翻译

输入输出样例

输入 #1复制

1 5 3
ABC

输出 #1复制

1 3 5

输入 #2复制

6 4 2
CAB

输出 #2复制

6 2 4
题解 python
ls=list(map(eval,input().split()))
n=input()
ls.sort()
dic={"A":ls[0],"B":ls[1],"C":ls[2]}
print(dic[n[0]],dic[n[1]],dic[n[2]])
c++
#include 
#include 
#include 
#include 

using namespace std;
int ls[3];
string n;
map m;

int main() {
    for (int i = 0; i < 3; ++i) cin >> ls[i];
    cin >>n;
    nth_element(ls,ls+1,ls+3);
    m['A']=ls[0];m['B']=ls[1];m['C']=ls[2];
    for(auto i :n)cout<< m[i]<<' ';
    return 0;
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/702737.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号