iT邦幫忙

第 11 屆 iThome 鐵人賽

DAY 22
0
自我挑戰組

一日一CPE系列 第 22

[Day22]12650: Dangerous Dive

  • 分享至 

  • xImage
  •  

考題日期:2018/10/02
題號:12650
星等:1
語言:C++


題目:
https://ithelp.ithome.com.tw/upload/images/20191008/20120937pRI2MqeYuL.png


題意:
有一個水壩的牆受到地震的影響受損了。事情緊急,必須馬上派人去修,以免水淹之患。 修護任務非常困難,還好現在有 n 個志願者。 政府製作了編號 1~n,總共n個號碼牌。每個志願者在去修理之前,會發給他一個號碼牌。 任務結束後,志願者把他的號碼牌交還回來。 現在水壩安全了,但不幸的是並不是每個志願者都有回來。有些志願者壯烈的犧牲了。你的任務是根據交還回來的號碼牌,找出有哪些號碼牌的志願者犧牲了。


程式:

#include <iostream>

using namespace std;

int main()
{
    int a,b,k;
    while(cin>>a>>b)
    {
        bool key = false;
        bool peo[10001];
        for(int i = 0 ; i < b ; i++)
        {
            cin>>k;
            peo[k] = true;
        }
        if(a == b)
            cout<<"*";
        else
        {
            for(int i = 1 ; i <= a ; i++)
            {
                if(peo[i] == false)
                {
                    if(key)
                        cout<<" ";
                    key = true;
                    cout<<i;
                }
            }
        }
        cout<<endl;
    }
    return 0;
}


測資:
https://ithelp.ithome.com.tw/upload/images/20191008/20120937GDH8j3llfF.png


上一篇
[Day21]11743: Credit Check
下一篇
[Day23]13185: DPA Numbers I
系列文
一日一CPE30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言