#include <bits/stdc++.h>
#define endl '\n'
#define int long long
using namespace std;
vector<int> adjlst[505];
vector<int> pattern;
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int N, K;
cin >> N >> K;
for (int i = 1; i <= N; i++){
for (int i2 = 1; i2 <= N; i2++){
int temp = 0;
cin >> temp;
adjlst[i].push_back(temp);
}
}
int curPerson = 1;
int prevShow = 0;
int person1 = 0;
int person2 = 0;
int i = 0;
while (true){
if (prevShow == 0){
curPerson += 1;
person1 = curPerson;
prevShow = 1;
pattern.push_back(curPerson);
}
else{
int tempPrev = prevShow;
person1 = curPerson;
prevShow = curPerson;
curPerson = adjlst[curPerson][tempPrev-1];
person2 = curPerson;
pattern.push_back(curPerson);
}
if (i > 2 && pattern[0] == person1 && pattern[1] == person2){
break;
}
i++;
}
pattern.pop_back();
pattern.pop_back();
cout << pattern[K % pattern.size()] << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
544 ms |
524292 KB |
Execution killed with signal 9 |
2 |
Runtime error |
603 ms |
524292 KB |
Execution killed with signal 9 |
3 |
Runtime error |
636 ms |
524292 KB |
Execution killed with signal 9 |
4 |
Runtime error |
642 ms |
524292 KB |
Execution killed with signal 9 |
5 |
Runtime error |
712 ms |
524292 KB |
Execution killed with signal 9 |
6 |
Runtime error |
683 ms |
524292 KB |
Execution killed with signal 9 |
7 |
Runtime error |
540 ms |
524292 KB |
Execution killed with signal 9 |
8 |
Runtime error |
555 ms |
524292 KB |
Execution killed with signal 9 |
9 |
Runtime error |
673 ms |
524292 KB |
Execution killed with signal 9 |
10 |
Runtime error |
614 ms |
524292 KB |
Execution killed with signal 9 |
11 |
Runtime error |
714 ms |
524292 KB |
Execution killed with signal 9 |
12 |
Runtime error |
560 ms |
524292 KB |
Execution killed with signal 9 |
13 |
Incorrect |
1 ms |
332 KB |
Output isn't correct |
14 |
Runtime error |
581 ms |
524292 KB |
Execution killed with signal 9 |