洛谷.P4414 [COCI2006-2007#2] ABC

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

**【输入格式】**第一行包含三个正整数 A , B 和 C ,不一定是按这个顺序。这三个数字都小于或等于100。第二行包含三个大写字母 “A” 、 “B” 和 “C” (它们之间_没有 _空格)表示所需的顺序.

**【输出格式】**在一行中输出A,B和C,用一个’ '(空格)隔开.

感谢@smartzzh 提供的翻译

题目描述
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.
题目链接:link.

呐,没错这又是一道水题,然而我还是掉坑里了,我的大体思路是:首先建立两个数组,然后排列一一对应,然后面对改后的数组我迷了,最后才发现自己是真菜啊,脑子里迷迷糊糊的天天的。于是我又get一个算法,其实之前学过的,管他呢/。。
上代码:

/*
介绍STL的一个圣器:map;
作用:建立一个映射.
如:int数组其实是一个int至int型的映射.
格式:(建立:)map<typename1,typename2> name
(使用方法:)假如已定义map<char,int> a; a[‘a’]=3;
则输出为cout<<a[‘a’];//输出3
*/
对于本题,只需建立一个char,int的映射即可.
#include<bits/stdc++.h>//万能头
using namespace std;
int a[3];char b[8];//输入转换用
map<char,int>l;//建立一个char,int的映射
int main(){
    cin>>a[0]>>a[1]>>a[2];//输入
    cin>>b[0]>>b[1]>>b[2];//输入
    sort(a,a+3);//sort()排序
    //升序用法(非专业说法)sort(数组名,数组名+元素数量);
    l['A']=a[0];//映射
    l['B']=a[1];//映射
    l['C']=a[2];//映射
    for(int i=0;i<3;i++)
        cout<<l[b[i]]<<" ";//因为b本来就是char数组,可直接使用
    return 0;
}作者: 徐雨轩 (洛谷)

呐,再上一个思路清晰的常算法:

#include<iostream>
#include<algorithm>
using namespace std;
int a[3];
char A,B,C;
int main()
{
    cin>>a[0]>>a[1]>>a[2];
    cin>>A>>B>>C;
    sort(a,a+3);//懒懒_(:з」∠)_排序法
    cout<<a[A-'A']<<" "<<a[B-'A']<<" "<<a[C-'A'];//字母是大写,减去‘A’后得到0(A),1(B),2(C)。
    return 0;
}作者: 绝顶我为峰(洛谷)

呐,就si这样,学到老,活到老–在水题中淹死的白菜;

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值