#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++;
}
cout << pattern[K % (pattern.size()-2)] << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
560 ms |
524292 KB |
Execution killed with signal 9 |
2 |
Runtime error |
601 ms |
524292 KB |
Execution killed with signal 9 |
3 |
Runtime error |
646 ms |
524292 KB |
Execution killed with signal 9 |
4 |
Runtime error |
628 ms |
524292 KB |
Execution killed with signal 9 |
5 |
Runtime error |
666 ms |
524292 KB |
Execution killed with signal 9 |
6 |
Runtime error |
660 ms |
524292 KB |
Execution killed with signal 9 |
7 |
Runtime error |
526 ms |
524292 KB |
Execution killed with signal 9 |
8 |
Runtime error |
530 ms |
524292 KB |
Execution killed with signal 9 |
9 |
Runtime error |
704 ms |
524292 KB |
Execution killed with signal 9 |
10 |
Runtime error |
630 ms |
524292 KB |
Execution killed with signal 9 |
11 |
Runtime error |
714 ms |
524292 KB |
Execution killed with signal 9 |
12 |
Runtime error |
575 ms |
524292 KB |
Execution killed with signal 9 |
13 |
Incorrect |
0 ms |
332 KB |
Output isn't correct |
14 |
Runtime error |
551 ms |
524292 KB |
Execution killed with signal 9 |