結果

問題 No.1149 色塗りゲーム
ユーザー yudedakoyudedako
提出日時 2020-08-22 18:52:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,677 bytes
コンパイル時間 1,404 ms
コンパイル使用メモリ 122,896 KB
実行使用メモリ 24,420 KB
平均クエリ数 19.90
最終ジャッジ日時 2023-09-24 06:20:58
合計ジャッジ時間 7,735 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
23,496 KB
testcase_01 AC 42 ms
24,036 KB
testcase_02 AC 43 ms
23,340 KB
testcase_03 AC 42 ms
23,844 KB
testcase_04 AC 42 ms
23,652 KB
testcase_05 AC 42 ms
23,352 KB
testcase_06 AC 42 ms
24,012 KB
testcase_07 AC 43 ms
24,348 KB
testcase_08 AC 43 ms
23,604 KB
testcase_09 AC 44 ms
23,568 KB
testcase_10 AC 46 ms
24,228 KB
testcase_11 AC 45 ms
23,640 KB
testcase_12 AC 45 ms
23,568 KB
testcase_13 AC 45 ms
23,376 KB
testcase_14 AC 45 ms
23,376 KB
testcase_15 AC 45 ms
24,240 KB
testcase_16 AC 45 ms
23,568 KB
testcase_17 AC 45 ms
23,424 KB
testcase_18 AC 44 ms
23,964 KB
testcase_19 AC 46 ms
23,988 KB
testcase_20 AC 44 ms
23,964 KB
testcase_21 AC 46 ms
23,388 KB
testcase_22 AC 48 ms
24,240 KB
testcase_23 AC 46 ms
23,484 KB
testcase_24 AC 46 ms
23,580 KB
testcase_25 AC 47 ms
23,376 KB
testcase_26 AC 46 ms
24,240 KB
testcase_27 AC 48 ms
24,216 KB
testcase_28 AC 47 ms
23,760 KB
testcase_29 AC 48 ms
23,376 KB
testcase_30 AC 84 ms
23,652 KB
testcase_31 AC 81 ms
23,496 KB
testcase_32 AC 86 ms
23,940 KB
testcase_33 AC 84 ms
23,352 KB
testcase_34 AC 92 ms
23,496 KB
testcase_35 AC 84 ms
23,664 KB
testcase_36 AC 92 ms
23,520 KB
testcase_37 AC 93 ms
24,156 KB
testcase_38 AC 91 ms
24,420 KB
testcase_39 AC 93 ms
23,676 KB
testcase_40 AC 96 ms
23,952 KB
testcase_41 AC 96 ms
23,772 KB
testcase_42 AC 100 ms
23,580 KB
testcase_43 AC 98 ms
23,424 KB
testcase_44 AC 108 ms
23,388 KB
testcase_45 AC 102 ms
23,532 KB
testcase_46 AC 104 ms
23,772 KB
testcase_47 AC 105 ms
23,760 KB
testcase_48 AC 108 ms
23,400 KB
testcase_49 AC 114 ms
23,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <tuple>
#include <vector>
#include <string>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <algorithm>
#include <functional>
#include <climits>
#include <numeric>
#include <queue>
#include <cmath>
#include <iomanip>
#include <array>
#include <string>
#include <stack>
#include <cassert>
#include <memory>
#include <random>
#include <fstream>
#include <cfloat>
#include <complex>


int main() {
	int n; std::cin >> n;
	std::unordered_map<int, std::unordered_set<int>> map;
	std::set<int> block; block.insert(0); block.insert(n + 1);
	if ((n & 1) == 1) {
		std::cout << "1 " << ((n + 1) >> 1) << std::endl;;
		map[n >> 1].insert(1);;
		map[n >> 1].insert((n >> 1) + 2);
		block.insert((n + 1) >> 1);
	}
	else {
		std::cout << "2 " << (n >> 1) << std::endl;;
		map[(n >> 1) - 1].insert(1);;
		map[(n >> 1) - 1].insert((n >> 1) + 2);
		block.insert(n >> 1); block.insert((n >> 1) + 1);
	}
	while (true) {
		int responce; std::cin >> responce;
		if (responce == 0) break;
		if (responce != 3) throw 0;
		int k, x; std::cin >> k >> x;
		const auto pos = block.lower_bound(x);
		const auto right = *pos;
		const auto left = *std::prev(pos) + 1;
		map[x - left].insert(left);
		map[right - x - k].insert(x + k);
		map[right - left].erase(left);
		block.insert(x);
		if (k == 2) block.insert(x + 1);
		const auto target = map[right - left].begin();
		const auto xx = x - left + *target;
		std::cout << k << ' ' << xx << std::endl;
		map[x - left].insert(*target);
		map[right - x - k].insert(xx + k);
		map[right - left].erase(target);
		block.insert(xx);
		if (k == 2) block.insert(xx + 1);
	}
}
0