# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
202227 |
2020-02-14T10:05:39 Z |
dolphingarlic |
GTA (COI14_gta) |
C++14 |
|
707 ms |
5640 KB |
#include <bits/stdc++.h>
using namespace std;
map<char, vector<int>> mp = {
{'A', {1, 0, 3, 4, 5, 6, 7, 2}},
{'C', {2, 5, 6, 0, 7, 3, 1, 4}},
{'G', {7, 4, 5, 1, 6, 2, 0, 3}},
{'T', {4, 7, 1, 6, 2, 0, 3, 5}}
};
vector<int> compose(vector<int> base, vector<int> trans) {
vector<int> ret(base.size());
for (int i = 0; i < base.size(); i++) ret[trans[i]] = base[i];
return ret;
}
vector<int> perm[100];
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
for (int i = 0; i < n; i++) {
perm[i] = {0, 1, 2, 3, 4, 5, 6, 7};
string s;
cin >> s;
reverse(s.begin(), s.end());
for (char j : s) perm[i] = compose(perm[i], mp[j]);
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (perm[i] == perm[j]) cout << "1 ";
else cout << "0 ";
}
cout << '\n';
}
return 0;
}
Compilation message
gta.cpp: In function 'std::vector<int> compose(std::vector<int>, std::vector<int>)':
gta.cpp:13:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < base.size(); i++) ret[trans[i]] = base[i];
~~^~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
376 KB |
Output isn't correct |
2 |
Incorrect |
5 ms |
376 KB |
Output isn't correct |
3 |
Incorrect |
5 ms |
380 KB |
Output isn't correct |
4 |
Incorrect |
5 ms |
380 KB |
Output isn't correct |
5 |
Incorrect |
5 ms |
376 KB |
Output isn't correct |
6 |
Incorrect |
5 ms |
380 KB |
Output isn't correct |
7 |
Incorrect |
6 ms |
376 KB |
Output isn't correct |
8 |
Incorrect |
12 ms |
376 KB |
Output isn't correct |
9 |
Incorrect |
73 ms |
888 KB |
Output isn't correct |
10 |
Incorrect |
707 ms |
5640 KB |
Output isn't correct |