#44028: 講解(並沒有


yp11351100@yphs.tp.edu.tw (701裡最聰明的辣個人)

學校 : 臺北市私立延平高級中學
編號 : 276234
來源 : [203.72.178.1]
最後登入時間 :
2024-09-12 17:29:03
m582. 書房 (Study) -- TOI練習賽202311新手組第2題 | From: [203.72.178.1] | 發表日期 : 2024-11-07 17:09

#include <iostream>
#include <map>
using namespace std;

int main() {
    cin.sync_with_stdio(0);
    cin.tie(0);
    int N, M;
    cin >> N >> M;
    map<int, int>MAP;
    for (int i = 0; i<N; i++)
    {
        int tmp;
        cin >> tmp;
        if (tmp != 0) MAP[tmp] = i+1;
    }
    for (auto it:MAP)
    {
        cout << it.second << " ";
    }
    cout << "\n";
}
 
ZeroJudge Forum