제출 #919303

#제출 시각아이디문제언어결과실행 시간메모리
919303vjudge1Airplane (NOI23_airplane)C++17
0 / 100
29 ms1200 KiB
/****************************************************************************** Online C++ Compiler. Code, Compile, Run and Debug C++ program online. Write your code in this editor and press "Run" button to compile and execute it. *******************************************************************************/ #include <bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; int arr[n]; int mx = 0; vector<int> idx; for(int i =0;i<n;i++){ cin>>arr[i]; mx=max(mx,arr[i]); } for(int i =0;i<n;i++)if(arr[i]==mx)idx.push_back(i); int cnt = 0; for(int i = 0;i<idx.size();i++){ if(i==0){ int k = idx[0]; for(int j =1;j<=k;j++)cnt+=max(1,arr[j]-arr[j-1]); } if(i>0)cnt+=idx[i]-idx[i-1]; if(i==idx.size()-1){ for(int j=idx[i]+1;j<n;j++)if(arr[j]>=arr[j-1])cnt++; } } cout<<cnt+mx<<endl; }

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'int main()':
Main.cpp:26:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |     for(int i = 0;i<idx.size();i++){
      |                   ~^~~~~~~~~~~
Main.cpp:32:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |         if(i==idx.size()-1){
      |            ~^~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...