Submission #593874

#TimeUsernameProblemLanguageResultExecution timeMemory
593874AlesL0Genetics (BOI18_genetics)C++17
46 / 100
2071 ms18752 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; int comp(string a, string b){ int r = 0; for (int i = 0; i < a.size(); i++)if (a[i] != b[i])r++; return r; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n, m, k; cin >> n >> m >> k; if (n <= 100 && m <= 100){ string x[n]; for (int i = 0; i < n; i++)cin >> x[i]; for (int i = 0; i < n; i++){ bool flag10 = 1; for (int j = 0; j < n; j++){ if (i == j)continue; if (comp(x[i], x[j]) != k){ flag10 = 0; break; } } if (flag10){ cout << i+1; break; } } } else { bitset <4100> b[n]; for (int i = 0; i < n; i++){ for (int j = 0; j < m; j++){ char c; cin >> c; if (c == 'A')b[i].set(j); } } for (int i = 0; i < n; i++){ bool flag10 = 1; for (int j = 0; j < n; j++){ if (i == j)continue; if ((b[i]^b[j]).count() != k){ flag10 = 0; break; } } if (flag10){ cout << i+1; break; } } } }

Compilation message (stderr)

genetics.cpp: In function 'int comp(std::string, std::string)':
genetics.cpp:9:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    9 |     for (int i = 0; i < a.size(); i++)if (a[i] != b[i])r++;
      |                     ~~^~~~~~~~~~
genetics.cpp: In function 'int main()':
genetics.cpp:48:41: warning: comparison of integer expressions of different signedness: 'std::size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   48 |                 if ((b[i]^b[j]).count() != k){
      |                     ~~~~~~~~~~~~~~~~~~~~^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...