제출 #248720

#제출 시각아이디문제언어결과실행 시간메모리
248720legendArranging Shoes (IOI19_shoes)C++17
10 / 100
1092 ms3200 KiB
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;

long long count_swaps(std::vector<int> s) {
	long long ans = 0;
	for(int i = 0;i<s.size();i+=2){
      a1:
         /*
          for(int j = 0;j<s.size();j++){
            cout<<s[j]<<" ";
          }
          cout<<endl;
          system("pause");*/
        if(s[i]<0){
            for(int j = i+1;j<s.size();j++){
                if(s[j] == -s[i]){
                    for(int k = j;k>i+1;k--){
                        swap(s[k],s[k-1]);
                        ans++;
                    }
                    break;
                }
            }
        }
        else{
            for(int j = i+1;j<s.size();j++){
                if(s[j]<0){
                    for(int k = j;k>i;k--){
                        swap(s[k],s[k-1]);
                        ans++;
                    }
                    break;
                }
            }
            goto a1;
        }
	}
//	system("pause");
	return ans;
}

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

shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:7:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i = 0;i<s.size();i+=2){
                ~^~~~~~~~~
shoes.cpp:16:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
             for(int j = i+1;j<s.size();j++){
                             ~^~~~~~~~~
shoes.cpp:27:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
             for(int j = i+1;j<s.size();j++){
                             ~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...