답안 #896972

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
896972 2024-01-02T11:39:24 Z AndrijaM 팬케이크 정렬 (NOI12_pancake) C++14
12 / 25
15 ms 348 KB
#include <bits/stdc++.h>
using namespace std;

int main()
{
    int t;
    cin>>t;
    int n;
    while(t--)
    {
        cin>>n;
        vector<int>v;
        for(int i=0;i<n;i++)
        {
            int num;
            cin>>num;
            v.push_back(num);
        }
        reverse(v.begin(),v.end());
        vector<int>s;
        s=v;
        sort(s.begin(),s.end());
        if(v==s)
        {
            cout<<0<<endl;
        }
        else
        {
            int ans=1;
            vector<int>pom;
            for(int i=1;i<v.size();i++)
            {
                if(v[i]>v[i-1])
                {
                    for(int j=i-1;j>=0;j--)
                    {
                        pom.push_back(v[j]);

                    }
                    for(int j=i;j<v.size();j++)
                    {
                        pom.push_back(v[j]);
                    }
                    if(pom==s)
                    {
                        ans=1;
                        break;
                    }
                    else
                    {
                        ans=2;
                        break;
                    }
                }
            }
            cout<<ans<<endl;
        }
    }
    return 0;
}

Compilation message

pancake.cpp: In function 'int main()':
pancake.cpp:31:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   31 |             for(int i=1;i<v.size();i++)
      |                         ~^~~~~~~~~
pancake.cpp:40:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   40 |                     for(int j=i;j<v.size();j++)
      |                                 ~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 15 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -