結果

問題 No.759 悪くない忘年会にしような!
ユーザー chocoruskchocorusk
提出日時 2018-12-07 00:56:06
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,384 bytes
コンパイル時間 959 ms
コンパイル使用メモリ 96,996 KB
実行使用メモリ 252,288 KB
最終ジャッジ日時 2024-09-14 02:59:30
合計ジャッジ時間 46,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
249,344 KB
testcase_01 AC 263 ms
249,600 KB
testcase_02 AC 271 ms
249,600 KB
testcase_03 AC 262 ms
249,344 KB
testcase_04 AC 270 ms
249,472 KB
testcase_05 AC 265 ms
249,600 KB
testcase_06 AC 268 ms
249,600 KB
testcase_07 AC 266 ms
249,600 KB
testcase_08 AC 269 ms
249,472 KB
testcase_09 AC 269 ms
249,344 KB
testcase_10 AC 267 ms
249,472 KB
testcase_11 AC 267 ms
249,600 KB
testcase_12 AC 269 ms
249,472 KB
testcase_13 AC 265 ms
249,472 KB
testcase_14 AC 268 ms
249,600 KB
testcase_15 AC 268 ms
249,472 KB
testcase_16 AC 264 ms
249,472 KB
testcase_17 AC 268 ms
249,472 KB
testcase_18 AC 266 ms
249,472 KB
testcase_19 AC 267 ms
249,600 KB
testcase_20 AC 265 ms
249,472 KB
testcase_21 AC 267 ms
249,472 KB
testcase_22 AC 267 ms
249,472 KB
testcase_23 AC 265 ms
249,344 KB
testcase_24 AC 266 ms
249,344 KB
testcase_25 AC 268 ms
249,472 KB
testcase_26 AC 266 ms
249,344 KB
testcase_27 AC 266 ms
249,472 KB
testcase_28 AC 266 ms
249,472 KB
testcase_29 AC 267 ms
249,472 KB
testcase_30 AC 266 ms
249,344 KB
testcase_31 AC 267 ms
249,472 KB
testcase_32 AC 267 ms
249,472 KB
testcase_33 AC 358 ms
250,112 KB
testcase_34 AC 291 ms
249,472 KB
testcase_35 AC 316 ms
249,856 KB
testcase_36 AC 356 ms
249,984 KB
testcase_37 AC 285 ms
249,600 KB
testcase_38 AC 369 ms
249,856 KB
testcase_39 AC 287 ms
249,472 KB
testcase_40 AC 338 ms
249,856 KB
testcase_41 AC 357 ms
249,856 KB
testcase_42 AC 370 ms
250,112 KB
testcase_43 AC 377 ms
249,984 KB
testcase_44 AC 1,371 ms
251,904 KB
testcase_45 AC 1,376 ms
252,032 KB
testcase_46 AC 1,381 ms
251,904 KB
testcase_47 AC 1,393 ms
251,904 KB
testcase_48 AC 1,382 ms
251,776 KB
testcase_49 AC 380 ms
250,112 KB
testcase_50 AC 381 ms
250,240 KB
testcase_51 AC 382 ms
250,112 KB
testcase_52 AC 377 ms
250,112 KB
testcase_53 AC 1,395 ms
251,904 KB
testcase_54 AC 1,390 ms
251,904 KB
testcase_55 AC 1,371 ms
251,776 KB
testcase_56 AC 1,375 ms
251,904 KB
testcase_57 AC 1,384 ms
251,776 KB
testcase_58 AC 1,395 ms
251,904 KB
testcase_59 AC 1,372 ms
251,904 KB
testcase_60 AC 1,373 ms
251,904 KB
testcase_61 AC 1,370 ms
252,032 KB
testcase_62 AC 1,376 ms
251,776 KB
testcase_63 TLE -
testcase_64 TLE -
testcase_65 AC 1,390 ms
252,160 KB
testcase_66 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:26:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   26 |                 int p; scanf("%d %d %d", &p, &t[i], &r[i]);
      |                        ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

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; scanf("%d %d %d", &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()) nuee[j]=1;
		}
		for(auto j:v[i]) bp[j]=1;
		for(auto j:v[i]){
		    if(nuee[j]) continue;
			if((bp&bt[t[j]+1]&br[r[j]]).count()) nuee[j]=1;
			//else if((bp&bt[t[j]]&br[r[j]+1]).count()) nuee[j]=1;
		}
		map<int, int> mp;
		for(auto j:v[i]){
			auto itr=mp.find(t[j]);
			if(itr==mp.end()) mp[t[j]]=j;
			else{
				if(r[itr->second]>r[j]) nuee[j]=1;
				else{
					nuee[itr->second]=1;
					itr->second=j;
				}
			}
		}
	}
	for(int i=0; i<n; i++){
		if(!nuee[i]) printf("%d\n", i+1);
	}
	return 0;
}
0