解決一個問題,我們給定一個包含盒子尺寸的陣列。現在我們有一個條件,如果大盒子的尺寸至少是小盒子的兩倍,那麼我們可以把小盒子放進大盒子裡。現在我們必須確定有多少個可見的盒子,例如。
Input : arr[] = { 1, 3, 4, 5 } Output : 3 Put a box of size 1 in the box of size 3. Input : arr[] = { 4, 2, 1, 8 } Output : 1
在這個問題中,我們的方法是在前進的過程中對陣列進行排序。我們現在將元素推入隊列。隨著我們的進展,我們將檢查目前元素是否大於或等於佇列前面的元素的兩倍。如果是真的,我們現在彈出前面的元素。最後,我們將當前元素推入隊列。我們的答案將是隊列在最後的大小。
#include <bits/stdc++.h> using namespace std; int main(){ int arr[] = { 1, 2, 3, 4, 5, 6 }; // given array containing the size of our boxes int n = sizeof(arr) / sizeof(arr[0]); // size of our array queue<int> q; sort(arr, arr + n); // sorting our array q.push(arr[0]); // pushing the smallest element in the front for (int i = 1; i < n; i++) { // traversing the array int curr = q.front(); // current element if (arr[i] >= 2 * curr) // if the size of the current box is greater than twice // of the box in front so we pop the front q.pop(); q.push(arr[i]); // pushing the current element in the queue } cout << q.size() << "\n"; // our answer return 0; }
3
#在本教程中,我們解決了一個問題,即在將一個盒子放入另一個盒子後找到可見盒子的數量。我們也學習了該問題的 C 程序以及解決該問題的完整方法(普通)。我們可以用其他語言像是C、java、python等語言來寫同樣的程式。我們希望本教學對您有所幫助。
以上是C++程式:找出將一個盒子放入另一個盒子後可見的盒子數量的詳細內容。更多資訊請關注PHP中文網其他相關文章!