Submission #213402

# Submission time Handle Problem Language Result Execution time Memory
213402 2020-03-25T17:40:23 Z popovicirobert Hamburg Steak (JOI20_hamburg) C++14
2 / 100
130 ms 3456 KB
#include <bits/stdc++.h>
#define lsb(x) (x & (-x))
#define ll long long
#define ull unsigned long long
#define uint unsigned int


using namespace std;

const int INF = (int) 1e9;

struct Rect {
	int x1, y1, x2, y2;
	Rect(int _x1 = 1, int _y1 = 1, int _x2 = INF, int _y2 = INF) : x1(_x1), y1(_y1), x2(_x2), y2(_y2) {}
	bool ok() {
		return x1 <= x2 && y1 <= y2;
	}
};

inline Rect inter(Rect a, Rect b) {
	return Rect(max(a.x1, b.x1), max(a.y1, b.y1), min(a.x2, b.x2), min(a.y2, b.y2));
}

int main() {
#ifdef HOME
    ifstream cin("A.in");
    ofstream cout("A.out");
#endif
    int i, n, k;
    ios::sync_with_stdio(false);
    cin.tie(0), cout.tie(0);

    cin >> n >> k;
    vector<Rect> r(n);
    for(i = 0; i < n; i++) {
    	cin >> r[i].x1 >> r[i].y1 >> r[i].x2 >> r[i].y2;
    }

    mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
    vector<bool> vis;
    while(true) {
    	vector<Rect> sol(k), new_r;
    	fill(vis.begin(), vis.end(), 0);
    	bool bad = 0;
    	for(i = 0; i < n; i++) {
    		bad = 1;
    		for(int j = 0; j < k; j++) {
    			if(inter(sol[j], r[i]).ok()) {
    				sol[j] = inter(sol[j], r[i]);
    				bad = 0;
    				break;
    			}
    		}
    		if(bad == 1) {
    			new_r.push_back(r[i]);
    			vis[i] = 1;
    		}
    	}
    	if(new_r.size() == 0) {
    		for(i = 0; i < k; i++) {
    			cout << sol[i].x1 << " " << sol[i].y1 << "\n";
    		}
    		return 0;
    	}
    	shuffle(new_r.begin(), new_r.end(), rng);
    	for(i = 0; i < n; i++) {
    		if(vis[i] == 0) {
    			new_r.push_back(r[i]);
    		}
    	}
    	swap(r, new_r);
    }

    return 0;
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 384 KB Output is correct
2 Correct 1 ms 384 KB Output is correct
3 Correct 2 ms 384 KB Output is correct
4 Correct 1 ms 384 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 384 KB Output is correct
2 Correct 1 ms 384 KB Output is correct
3 Correct 2 ms 384 KB Output is correct
4 Correct 1 ms 384 KB Output is correct
5 Correct 125 ms 3456 KB Output is correct
6 Correct 130 ms 3456 KB Output is correct
7 Correct 92 ms 3456 KB Output is correct
8 Correct 116 ms 3456 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -