time limit: 1000ms
memory limit: 65536kb
submit
statistic
problem description
建立乙個函式,以確定乙個整數值是否包含在集合中。
input
多組輸入。
首先輸入集合的元素數n<=100000。
接下來的一行輸入n 個整數0<=ai<=n。
接下來的一行輸入乙個整數 0<=b<=n。
output
(一組答案佔一行),如果存在就輸出true,如果不存在就輸出false.
example input
51 2 3 4 5
4
example output
true
think:直接遍歷一遍尋找相對應的元素計科,不會超時。
#include using namespace std;int main()
}if(flag)
cout<<"true"cout<<"false"<}
return 0;
}
離散題目1
problem description 建立乙個函式,以確定乙個整數值是否包含在集合中。input 多組輸入。首先輸入集合的元素數n 100000。接下來的一行輸入n 個整數0 ai n。接下來的一行輸入乙個整數 0 b n。output 一組答案佔一行 如果存在就輸出true,如果不存在就輸出fa...
離散題目3
think 1暴力for迴圈 2初級桶排序思想 sdut題目鏈結 離散題目3 time limit 1000ms memory limit 65536kb problem description dayu在新的學習開始學習新的數學知識,一天dayu學習集合的時候遇到乙個問題,他有兩個集合a和b,他想...
離散題目2
time limit 1000ms memory limit 65536kb submit statistic problem description dayu是乙個喜歡看電影的好孩子,他的電腦裡有成千上萬部電影。因為某些不可描述的原因,他把這些電影以互不相同的編號命名 編號是數字且範圍在 0,10...