| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 910986 | CyberCow | Trobojnica (COCI19_trobojnica) | C++17 | 54 ms | 10684 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <random>
#include <algorithm>
#include <bitset>
#include <chrono>
#include <cmath>
#include <deque>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <map>
#include <queue>
#include <set>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include <chrono>
#define fr first
#define sc second
#define ad push_back
using namespace std;
using ll = long long;
mt19937 rnd(348502);
const ll N = 200005;
pair<int, int> gn[N];
pair<int, int> nax[N];
int abc[5];
void solve()
{
    int n, i, j, x, y;
    cin >> n;
    char cc;
    int a = 0, b = 0, c = 0;
    vector<int> v;
    for ( i = 0; i < n; i++)
    {
        cin >> cc;
        if (cc == '1')
        {
            a++;
            v.push_back(1);
            abc[1]++;
        }
        else if (cc == '2')
        {
            b++;
            v.push_back(2);
            abc[2]++;
        }
        else
        {
            c++;
            v.push_back(3);
            abc[3]++;
        }
    }
    if (max(a, max(b, c)) == n || a % 2 != b % 2 || a % 2 != c % 2 || b % 2 != c % 2)
    {
        cout << "NE\n";
        return;
    }
    for ( i = 0; i < n - 1; i++)
    {
        gn[i + 1] = { i + 2, v[i] };
        nax[i + 2] = { i + 1 , v[i] };
    }
    gn[n] = { 1, v[n - 1] };
    nax[1] = { n, v[n - 1] };
    int qan = 0, gag = n;
    vector<pair<int, pair<int, int>>> ans;
    while (qan < n - 3)
    {
        while (gn[gag].second == nax[gag].second || !(abc[gn[gag].second] == max(a, max(b, c)) || abc[nax[gag].second] == max(a, max(b, c))))
        {
            gag = gn[gag].first;
        }
        qan++;
        if (gn[gag].second != 1 && nax[gag].second != 1)
        {
            ans.push_back({ 1, {nax[gag].first, gn[gag].first}});
            a++; b--; c--;
            abc[1]++;
            abc[2]--;
            abc[3]--;
            gn[nax[gag].first].second = 1;
            gn[nax[gag].first].first = gn[gag].first;
            nax[gn[gag].first].second = 1;
            nax[gn[gag].first].first = nax[gag].first;
        }
        else if (gn[gag].second != 2 && nax[gag].second != 2)
        {
            ans.push_back({ 2, {nax[gag].first, gn[gag].first} });
            a--; b++; c--;
            abc[1]--;
            abc[2]++;
            abc[3]--;
            gn[nax[gag].first].second = 2;
            gn[nax[gag].first].first = gn[gag].first;
            nax[gn[gag].first].second = 2;
            nax[gn[gag].first].first = nax[gag].first;
        }
        else if (gn[gag].second != 3 && nax[gag].second != 3)
        {
            ans.push_back({ 3, {nax[gag].first, gn[gag].first} });
            a--; b--; c++;
            abc[1]--;
            abc[2]--;
            abc[3]++;
            gn[nax[gag].first].second = 3;
            gn[nax[gag].first].first = gn[gag].first;
            nax[gn[gag].first].second = 3;
            nax[gn[gag].first].first = nax[gag].first;
        }
        gag = nax[gag].first;
    }
    cout << "DA\n";
    for ( i = 0; i < ans.size(); i++)
    {
        cout << ans[i].second.first << ' ' << ans[i].second.second << ' ' << ans[i].first << '\n';
    }
}
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    ll tt = 1;
    //cin >> tt;
    while (tt--) {
        solve();
    }
    return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
