#45707: 參考答案


miller.chen2011@gmail.com (LBozo Stupid)

學校 : 不指定學校
編號 : 258265
來源 : [59.120.140.251]
最後登入時間 :
2024-09-18 18:27:24
e533. 11942 - Lumberjack Sequencing -- UVA | From: [59.120.140.251] | 發表日期 : 2025-04-02 18:12

創造兩個數列

  1. 原本的數列
  2. sort後面的數列
  3. 判斷前兩個數字大小
  4. 比較小的話sort小到大然後比較
  5. 比較大的話sort大到小然後比較
  6. 如果一樣的話cout "Ordered" else "Unordered"
  7. #include <iostream>
    #include <algorithm>
    using namespace std;
    int main()
    {
        int a,b;
        cin >> a;
        b=0;
        int list1[10];
        int list2[10];
        cout << "Lumberjacks:" << "\n";
        for(int i=0; i<a; i++)
        {
            for(int i=0; i<10; i++)
            {
                cin >> list1[i];
                list2[i]=list1[i];
            }
            if(list1[i]<list1[i+1])
            {
                sort(list1,list1+10);
                for(int i=0; i<10; i++)
                {
                    if(list1[i]==list2[i])
                    {
                        b=b+1;
                    }
                }
                if(b==10)
                {
                    cout << "Ordered" << "\n";
                }
                else
                {
                    cout << "Unordered" << "\n";
                }
                b=0;
            }
            else if(list1[i]>list1[i+1])
            {
                sort(list1,list1+10,greater<int>());
                for(int i=0; i<10; i++)
                {
                    if(list1[i]==list2[i])
                    {
                        b=b+1;
                    }
                }
                if(b==10)
                {
                    cout << "Ordered" << "\n";
                }
                else
                {
                    cout << "Unordered" << "\n";
                }
                b=0;
            }
            else
            {
                continue;
            }
        }
    }
 
ZeroJudge Forum