我是靠谱客的博主 无情信封,这篇文章主要介绍codeforces 136A Presents(水题),现在分享给大家,希望可以做个参考。

A. Presents
点击打开题目
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited n his friends there.

If there's one thing Petya likes more that receiving gifts, that's watching others giving gifts to somebody else. Thus, he safely hid the laptop until the next New Year and made up his mind to watch his friends exchanging gifts while he does not participate in the process. He numbered all his friends with integers from 1 to n. Petya remembered that a friend number i gave a gift to a friend number pi. He also remembered that each of his friends received exactly one gift.

Now Petya wants to know for each friend i the number of a friend who has given him a gift.

Input

The first line contains one integer n (1 ≤ n ≤ 100) — the quantity of friends Petya invited to the party. The second line contains n space-separated integers: the i-th number is pi — the number of a friend who gave a gift to friend number i. It is guaranteed that each friend received exactly one gift. It is possible that some friends do not share Petya's ideas of giving gifts to somebody else. Those friends gave the gifts to themselves.

Output

Print n space-separated integers: the i-th number should equal the number of the friend who gave a gift to friend number i.

Sample test(s)
Input
复制代码
1
2
4 2 3 4 1
Output
复制代码
1
4 1 2 3
Input
复制代码
1
2
3 1 3 2
Output
复制代码
1
1 3 2
Input
复制代码
1
2
2 1 2
Output
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
1 2 不多说,关键在于读题。 代码:
复制代码
#include <iostream>
#include<memory.h>
using namespace std;
int main()
{
    int a[110],b[110],n,count1,i;
    while(cin>>n)
    {
        count1=0;
        memset(b,0,sizeof(b));
        for(i=0; i<n; i++)
        {
            cin>>a[i];
            b[a[i]]=i+1;
        }
        for(i=0; i<110; i++)
        {
            if(b[i]!=0)
            {
                if(count1==n-1)
                {
                    cout<<b[i]<<endl;
                    break;
                }
                cout<<b[i]<<" ";
                count1++;
            }
        }
    }
    return 0;
}

 

最后

以上就是无情信封最近收集整理的关于codeforces 136A Presents(水题)的全部内容,更多相关codeforces内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部