답안 #1026098

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1026098 2024-07-17T14:50:27 Z HD1 Vision Program (IOI19_vision) C++14
0 / 100
142 ms 1904 KB
#include "vision.h"
#include<bits/stdc++.h>
#define sz(x) ll(x.size())
#define all(x) x.begin(),x.end()
#define pb push_back
#define ff first
#define ss second
using namespace std;
typedef long long ll;
typedef pair<ll,ll> ii;
const ll MAX=1e6;
//ii mobs[10]={{1,1},{-1,-1},{1,-1},{-1,1},{0,1},{1,0},{-1, 0},{0, -1}};
int n, m, k;
int dist(int a, int b, int i, int j){
	return abs(a-i)+abs(b-j);
}
vector<int>s, p, q;
void look(int a, int b){
	for(int i=0; i<n; i++){
		for(int j=0; j<m; j++){
			if(dist(a,b,i,j)==k){
				q.pb(i*m+j);
			}
		}
	}
	p.pb(add_or(q));
	p.pb(a*m+b);
	s.pb(add_and(p));
	p.clear();
	q.clear();
}
void construct_network(int H, int W, int K){
	n=H;
	m=W;
	k=K;
	for(int i=0; i<H; i++){
		for(int j=0; j<W; j++){
			look(i,j);
		}
	}
	add_or(s);
	return;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB WA in grader: Instruction with no inputs
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB WA in grader: Instruction with no inputs
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB WA in grader: Instruction with no inputs
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB WA in grader: Instruction with no inputs
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
3 Incorrect 1 ms 348 KB WA in grader: Instruction with no inputs
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
3 Correct 10 ms 728 KB Output is correct
4 Correct 16 ms 1904 KB Output is correct
5 Correct 13 ms 1496 KB Output is correct
6 Incorrect 2 ms 344 KB WA in grader: Instruction with no inputs
7 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 142 ms 1032 KB WA in grader: Too many instructions
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB WA in grader: Instruction with no inputs
3 Halted 0 ms 0 KB -