답안 #250756

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
250756 2020-07-19T04:55:09 Z IsaacMoris Minerals (JOI19_minerals) C++14
0 / 100
2 ms 512 KB
#include<iostream>
#include <bits/stdc++.h>
#include "minerals.h"
#define ll long long
#define ld long double
#define IO ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
using namespace std;
void Solve(int N)
{
    vector<int> v;
    for (int i = 1; i <= 2 * N; ++i)
        v.push_back(i);
    for(int i=0; i<50; i++)
        random_shuffle(v.begin(),v.end());
    stack<int> st;
    int last=0;
    while(!v.empty())
    {
        int x= Query(v.back());
        if(x!=last)
        {
            st.push(v.back());
            v.pop_back();
            last=x;
            continue;
        }
        int a=v.back();
        v.pop_back();
        while(1)
        {
            x=Query(st.top());
            if(x!=last)
            {
                v.push_back(st.top());
                st.pop();
                last=x;
                continue;
            }
            Answer(st.top(), a);
            st.pop();
            last=Query(a);
        }
    }

}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 384 KB Wrong Answer [1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -