Submission #836374

#TimeUsernameProblemLanguageResultExecution timeMemory
836374Jarif_RahmanGondola (IOI14_gondola)C++17
20 / 100
13 ms1716 KiB
#include "gondola.h" #include <bits/stdc++.h> #define pb push_back #define f first #define sc second using namespace std; typedef long long int ll; typedef string str; const ll md = 1e9+7; bool distinct(deque<int> S){ sort(S.begin(), S.end()); for(int i = 1; i < S.size(); i++) if(S[i] == S[i-1]) return 0; return 1; } int valid(int n, int _S[]){ deque<int> S; for(int i = 0; i < n; i++) S.pb(_S[i]); int mn = *min_element(S.begin(), S.end()); while(S[0] != mn) S.pb(S[0]), S.pop_front(); if(!distinct(S)) return 0; for(int i = 1; i < n; i++) if(S[i] <= n){ if(S[i] != (mn+i-1)%n+1) return 0; } return 1; } int replacement(int n, int _S[], int R[]){ deque<int> S; for(int i = 0; i < n; i++) S.pb(_S[i]); int mn = *min_element(S.begin(), S.end()); while(S[0] != mn) S.pb(S[0]), S.pop_front(); return 0; } int countReplacement(int n, int _S[]){ deque<int> S; for(int i = 0; i < n; i++) S.pb(_S[i]); int mn = *min_element(S.begin(), S.end()); while(S[0] != mn) S.pb(S[0]), S.pop_front(); return 0; }

Compilation message (stderr)

gondola.cpp: In function 'bool distinct(std::deque<int>)':
gondola.cpp:14:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::deque<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |     for(int i = 1; i < S.size(); i++) if(S[i] == S[i-1]) return 0;
      |                    ~~^~~~~~~~~~
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...