結果

問題 No.1605 Matrix Shape
ユーザー 夜
提出日時 2021-07-16 22:02:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 99,468 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-06 09:11:55
合計ジャッジ時間 5,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 260 ms
14,336 KB
testcase_20 AC 196 ms
8,960 KB
testcase_21 AC 189 ms
8,960 KB
testcase_22 WA -
testcase_23 AC 262 ms
14,464 KB
testcase_24 AC 251 ms
14,336 KB
testcase_25 AC 95 ms
6,940 KB
testcase_26 AC 95 ms
6,944 KB
testcase_27 AC 95 ms
6,940 KB
testcase_28 WA -
testcase_29 AC 94 ms
6,944 KB
testcase_30 AC 193 ms
8,832 KB
testcase_31 AC 191 ms
8,960 KB
testcase_32 AC 161 ms
6,944 KB
testcase_33 WA -
testcase_34 AC 109 ms
6,940 KB
testcase_35 AC 198 ms
12,288 KB
testcase_36 AC 103 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int l[200020] = {}, r[200020] = {};
set<int> st;
int main() {
	int n;
	cin >> n;
	for (int i = 0; i < n; i++) {
		int h, w;
		cin >> h >> w;
		st.insert(h);
		if (r[h] == 0) {
			l[h]++;
		}
		else {
			r[h]--;
		}
		if (l[w] == 0) {
			r[w]++;
		}
		else {
			l[w]--;
		}
	}
	int l1 = 0, r1 = 0;
	for (int i = 1; i <= 200000; i++) {
		l1 += l[i];
		r1 += r[i];
	}
	if (l1 == 0 && r1 == 0) {
		cout << st.size() << endl;
	}
	else if (l1 == 1 && r1 == 1) {
		cout << 1 << endl;
	}
	else {
		cout << 0 << endl;
	}
}
0