답안 #526547

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
526547 2022-02-15T07:40:54 Z brayden04 Političari (COCI20_politicari) C++14
0 / 70
714 ms 524292 KB
#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;
}
# 결과 실행 시간 메모리 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