# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
990397 | amine_aroua | Broken Device (JOI17_broken_device) | C++17 | 34 ms | 2868 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Annalib.h"
#include<bits/stdc++.h>
using namespace std;
#define fore(i , n ) for(int i = 0 ; i < n; i++)
void Anna( int N, long long X, int K, int P[] )
{
srand(6661);
vector<int> final(N , 0);
vector<bool> forbidden(N , 0);
vector<int> seq(N);
fore(i , N)
seq[i] = i;
random_shuffle(seq.begin() , seq.end());
fore(i , K)
forbidden[P[i]] = 1;
for(int i = 0 ;i + 1< N;i+=2)
{
int cur = X%3;
if(forbidden[seq[i]] == 1 && forbidden[seq[i + 1]] == 1)
continue;
if(forbidden[seq[i]] && (cur == 0 || cur == 2))
continue;
if(forbidden[seq[i + 1]] && (cur == 1 || cur == 2))
X/=2;
if(cur == 0)
final[seq[i]] = 1;
else if(cur == 1)
final[seq[i + 1]] = 1;
else
final[seq[i]] = final[seq[i + 1]] = 1;
}
fore(i , N)
Set(i , final[i]);
}
#include "Brunolib.h"
#include <bits/stdc++.h>
#define pb push_back
#define Int long long
#define fore(i , n ) for(int i = 0 ; i < n; i++)
using namespace std;
long long Bruno( int N, int A[] ){
srand(6661);
vector<int> seq(N);
fore(i , N)
seq[i] = i;
random_shuffle(seq.begin() , seq.end());
vector<int> po;
for(int i = 0 ;i + 1 < N ; i+=2)
{
if(A[seq[i]] == 1 && A[seq[i + 1]] == 1)
po.pb(2);
else if(A[seq[i]] == 1)
po.pb(0);
else if(A[seq[i + 1]] == 1)
po.pb(1);
}
reverse(po.begin() , po.end());
Int X = 0;
for(auto x : po)
X = 3*X + x;
return X;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |