QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#244349 | #7687. Randias Permutation Task | ucup-team2432# | TL | 1ms | 3476kb | C++20 | 1.2kb | 2023-11-08 23:27:48 | 2023-11-08 23:27:49 |
Judging History
answer
#include<bits/stdc++.h>
using LL = long long;
const LL inf = 1e9;
const LL P[2] = {1000000007,1000000009};
const LL K = 7653524;
void solve() {
std::mt19937 rnd(std::random_device{}());
int n,m;std::cin >> n >> m;
std::vector pmt(m,std::vector<int>(n));
for (int i = 0; i < m; ++i) {
for (int j = 0; j < n; ++j) {
std::cin >> pmt[i][j];
}
}
std::shuffle(pmt.begin(),pmt.end(),rnd);
std::map<std::vector<int>,int> mp;
std::function<void(int,const std::vector<int>&)> dfs = [&](int p,const std::vector<int> &vec) {
if (!mp.count(vec) || mp[vec] + 10 >= p) {
mp[vec] = p;
if (p == m) { return; }
dfs(p+1,vec);
std::vector<int> now(n);
for (int i = 0; i < n; ++i) {
now[i] = vec[pmt[p][i] - 1];
}
dfs(p+1,now);
}
};
for (int i = 0; i < m; ++i) {
dfs(i+1,pmt[i]);
}
std::cout << mp.size();
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
// clock_t st = clock();
// std::cout << std::fixed << std::setprecision(12);
// freopen("test.in", "r", stdin);
// freopen("test.out", "w", stdout);
int T = 1;
// std::cin >> T;
while (T --) {
solve();
}
// std::cout << (double)(clock()-st)/CLOCKS_PER_SEC;
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3420kb
input:
5 4 1 2 3 4 5 5 1 3 4 2 3 4 1 5 2 5 2 4 1 3
output:
8
result:
ok 1 number(s): "8"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3476kb
input:
2 1 2 1
output:
1
result:
ok 1 number(s): "1"
Test #3:
score: -100
Time Limit Exceeded
input:
1 180 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...