返回列表 發帖

202412新手2-香料 (Spices)

問題敘述
小希最近喜歡上烹飪,特別是各式各樣的香料料理,他今天又到超市去購買所需的材料。超市有一整區的香料櫃,他要根據食譜找到所有香料。請寫一個程式幫他找到香料所在位置。

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
May

  1. #include <bits/stdc++.h>
  2. //#include <iostream>
  3. //#include <vector>
  4. using namespace std;

  5. int main() {
  6.     // 輸入香料數量
  7.     int N;
  8.     cin >> N;

  9.     // 儲存要找的香料編號
  10.     vector<int> spicesToFind(N);
  11.     for (int i = 0; i < N; i++) {
  12.         cin >> spicesToFind[i];
  13.     }

  14.     // 輸入貨架資訊
  15.     int R, C;
  16.     cin >> R >> C;

  17.     // 儲存貨架香料編號
  18.     vector<vector<int>> shelves(R, vector<int>(C));
  19.     for (int i = 0; i < R; i++) {
  20.         for (int j = 0; j < C; j++) {
  21.             cin >> shelves[i][j];
  22.         }
  23.     }

  24.     // 找尋每個香料的位置
  25.     for (int spice : spicesToFind) {
  26.         bool found = false;
  27.         for (int i = 0; i < R; i++) {
  28.             for (int j = 0; j < C; j++) {
  29.                 if (shelves[i][j] == spice) {
  30.                     // 找到香料,輸出其位置
  31.                     cout << i + 1 << " " << j + 1 << endl;
  32.                     found = true;
  33.                     break;
  34.                 }
  35.             }
  36.             if (found) break;
  37.         }
  38.         if (!found) {
  39.             // 如果找不到香料,輸出 -1
  40.             cout << -1 << endl;
  41.         }
  42.     }

  43.     return 0;
  44. }
  45. /*
  46. 輸入範例1
  47. 3
  48. 2 5 7
  49. 3 3
  50. 1 2 3
  51. 4 5 6
  52. 7 8 9
  53. 輸出範例1
  54. 1 2
  55. 2 2
  56. 3 1

  57. 輸入範例2
  58. 5
  59. 1 6 8 21 20
  60. 4 5
  61. 2 7 9 3 20
  62. 1 5 8 12 13
  63. 4 14 19 6 11
  64. 18 16 17 15 10
  65. 輸出範例2
  66. 2 1
  67. 3 4
  68. 2 3
  69. -1
  70. 1 5
  71. */
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊
May

TOP

使用雜湊表(unordered_map)可以大幅提高搜尋效率,將貨架上香料的位置儲存在雜湊表中,查詢香料位置的時間複雜度從
O(R×C) 降為 O(1)。

以下是完整的程式碼,結合雜湊表的實作:
  1. #include <bits/stdc++.h>
  2. //#include <iostream>
  3. //#include <unordered_map>
  4. //#include <vector>
  5. using namespace std;

  6. int main() {
  7.     // 輸入香料數量
  8.     int N;
  9.     cin >> N;

  10.     // 儲存要找的香料編號
  11.     vector<int> spicesToFind(N);
  12.     for (int i = 0; i < N; i++) {
  13.         cin >> spicesToFind[i];
  14.     }

  15.     // 輸入貨架資訊
  16.     int R, C;
  17.     cin >> R >> C;

  18.     // 使用雜湊表儲存香料位置
  19.     unordered_map<int, pair<int, int>> spicePosition;
  20.     for (int i = 0; i < R; i++) {
  21.         for (int j = 0; j < C; j++) {
  22.             int spice;
  23.             cin >> spice;
  24.             // 將香料位置存入雜湊表,位置以 1 為基底
  25.             spicePosition[spice] = {i + 1, j + 1};
  26.         }
  27.     }

  28.     // 查找每個要找的香料位置
  29.     for (int spice : spicesToFind) {
  30.         if (spicePosition.find(spice) != spicePosition.end()) {
  31.             // 若香料存在於雜湊表,輸出其位置
  32.             cout << spicePosition[spice].first << " " << spicePosition[spice].second << endl;
  33.         } else {
  34.             // 若找不到香料,輸出 -1
  35.             cout << -1 << endl;
  36.         }
  37.     }

  38.     return 0;
  39. }
  40. /*
  41. 輸入範例1
  42. 3
  43. 2 5 7
  44. 3 3
  45. 1 2 3
  46. 4 5 6
  47. 7 8 9
  48. 輸出範例1
  49. 1 2
  50. 2 2
  51. 3 1

  52. 輸入範例2
  53. 5
  54. 1 6 8 21 20
  55. 4 5
  56. 2 7 9 3 20
  57. 1 5 8 12 13
  58. 4 14 19 6 11
  59. 18 16 17 15 10
  60. 輸出範例2
  61. 2 1
  62. 3 4
  63. 2 3
  64. -1
  65. 1 5
  66. */
複製代碼
May

TOP

返回列表