# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
112000 |
2019-05-17T04:22:35 Z |
AMO5 |
None (JOI16_memory2) |
C++ |
|
3 ms |
384 KB |
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include "Memory2_lib.h"
using namespace std;
using namespace __gnu_pbds;
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define fbo find_by_order
#define ook order_of_key
#define all(x) (x).begin(), (x).end()
typedef long long ll;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
typedef pair <ll, int> pli;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef long double ld;
typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> pbds;
typedef set<int>::iterator sit;
typedef map<int,int>::iterator mit;
typedef vector<int>::iterator vit;
long long INF=numeric_limits<long long>::max();
int vis[1011];
vector<int> pos[55];
void Solve(int T, int N){
if(T<=2)
{
int n = N;
N*=2;
for(int i = 0; i < N; i++)
{
for(int j = i+1; j < N; j++)
{
for(int k = j+1; k < N; k++)
{
if(vis[i]==2||vis[j]==2||vis[k]==2)continue;
int x = Flip(i,j);
int y = Flip(i,k);
int z = Flip(j,k);
if(x==y&&x==z)
{
}
else if(x==y)
{
pos[x].pb(i);
vis[i]++;
}
else if(x==z)
{
pos[x].pb(j);
vis[j]++;
}
}
}
}
for(int i = 0; i < n; i++)
{
Answer(pos[i][0],pos[i][1],i);
}
}
return;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
384 KB |
Wrong Answer[3] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
256 KB |
Wrong Answer[2] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
256 KB |
Wrong Answer[5] |
2 |
Halted |
0 ms |
0 KB |
- |