結果

問題 No.759 悪くない忘年会にしような!
ユーザー chocoruskchocorusk
提出日時 2018-12-07 00:37:16
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,120 bytes
コンパイル時間 1,219 ms
コンパイル使用メモリ 88,940 KB
実行使用メモリ 258,464 KB
最終ジャッジ日時 2024-09-14 02:56:22
合計ジャッジ時間 56,173 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
256,160 KB
testcase_01 AC 261 ms
249,344 KB
testcase_02 AC 271 ms
249,344 KB
testcase_03 AC 261 ms
249,216 KB
testcase_04 AC 261 ms
249,344 KB
testcase_05 AC 259 ms
249,216 KB
testcase_06 AC 260 ms
249,344 KB
testcase_07 AC 259 ms
249,088 KB
testcase_08 AC 264 ms
249,472 KB
testcase_09 AC 259 ms
249,216 KB
testcase_10 AC 259 ms
249,344 KB
testcase_11 AC 269 ms
249,344 KB
testcase_12 AC 260 ms
249,216 KB
testcase_13 AC 259 ms
249,344 KB
testcase_14 AC 259 ms
249,216 KB
testcase_15 AC 269 ms
249,088 KB
testcase_16 AC 259 ms
249,216 KB
testcase_17 AC 260 ms
249,216 KB
testcase_18 AC 266 ms
249,088 KB
testcase_19 AC 262 ms
249,344 KB
testcase_20 AC 261 ms
249,216 KB
testcase_21 AC 261 ms
249,216 KB
testcase_22 AC 262 ms
249,344 KB
testcase_23 AC 262 ms
249,344 KB
testcase_24 AC 263 ms
249,216 KB
testcase_25 AC 265 ms
249,344 KB
testcase_26 AC 261 ms
249,216 KB
testcase_27 AC 261 ms
249,088 KB
testcase_28 AC 265 ms
249,344 KB
testcase_29 AC 261 ms
249,088 KB
testcase_30 AC 269 ms
249,216 KB
testcase_31 AC 264 ms
249,216 KB
testcase_32 AC 261 ms
249,344 KB
testcase_33 AC 433 ms
249,856 KB
testcase_34 AC 289 ms
249,472 KB
testcase_35 AC 350 ms
249,472 KB
testcase_36 AC 436 ms
249,728 KB
testcase_37 AC 295 ms
249,472 KB
testcase_38 AC 450 ms
249,856 KB
testcase_39 AC 301 ms
249,344 KB
testcase_40 AC 402 ms
249,856 KB
testcase_41 AC 416 ms
249,856 KB
testcase_42 AC 452 ms
249,856 KB
testcase_43 AC 466 ms
249,856 KB
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 477 ms
249,984 KB
testcase_50 AC 476 ms
249,984 KB
testcase_51 AC 474 ms
249,856 KB
testcase_52 AC 511 ms
249,856 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <iostream>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <unordered_map>
#include <unordered_set>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
	int n;
	cin>>n;
	vector<int> v[10001], vt[10001], vr[10001];
	int t[100000], r[100000];
	for(int i=0; i<n; i++){
		int p; cin>>p>>t[i]>>r[i];
		vt[t[i]].push_back(i);
		vr[r[i]].push_back(i);
		v[p].push_back(i);
	}
	bitset<100000> bt[10002], br[10002], bp;
	for(int i=10000; i>=0; i--){
		bt[i]=bt[i+1], br[i]=br[i+1];
		for(auto j:vt[i]){
			bt[i][j]=1;
		}
		for(auto j:vr[i]){
			br[i][j]=1;
		}
	}
	bool nuee[100001]={};
	for(int i=10000; i>=0; i--){
		for(auto j:v[i]){
			if((bp&bt[t[j]]&br[r[j]]).count()>0) nuee[j]=1;
		}
		for(auto j:v[i]) bp[j]=1;
		for(auto j:v[i]){
			if((bp&bt[t[j]+1]&br[r[j]]).count()>0) nuee[j]=1;
			else if((bp&bt[t[j]]&br[r[j]+1]).count()>0) nuee[j]=1;
		}
	}
	for(int i=0; i<n; i++){
		if(!nuee[i]) cout<<i+1<<endl;
	}
	return 0;
}
0