結果

問題 No.479 頂点は要らない
ユーザー DugongDugong
提出日時 2017-03-16 20:43:27
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 51 ms / 1,500 ms
コード長 712 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 42,624 KB
実行使用メモリ 9,920 KB
最終ジャッジ日時 2024-07-04 02:43:31
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 4 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 51 ms
9,728 KB
testcase_27 AC 46 ms
9,792 KB
testcase_28 AC 37 ms
9,920 KB
testcase_29 AC 37 ms
8,396 KB
testcase_30 AC 37 ms
8,320 KB
testcase_31 AC 37 ms
8,448 KB
testcase_32 AC 37 ms
8,320 KB
testcase_33 AC 35 ms
8,516 KB
testcase_34 AC 39 ms
8,704 KB
testcase_35 AC 35 ms
8,064 KB
testcase_36 AC 18 ms
7,168 KB
testcase_37 AC 37 ms
8,576 KB
testcase_38 AC 32 ms
8,216 KB
testcase_39 AC 25 ms
7,808 KB
testcase_40 AC 29 ms
8,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         scanf("%d %d",&n,&m);
      |         ~~~~~^~~~~~~~~~~~~~~
main.cpp:15:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |                 scanf("%d %d",a+i,b+i);
      |                 ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<cstdio>
#include<vector>
#include<algorithm>
using namespace std;

vector<int> G[100000];
bool used[100000];
int ans[100000];

int main(){
	int n,m;
	int a[100000],b[100000];
	scanf("%d %d",&n,&m);
	for(int i=0;i<m;i++){
		scanf("%d %d",a+i,b+i);
		G[a[i]].push_back(i);
		G[b[i]].push_back(i);
	}
	fill(used,used+m,false);
	fill(ans,ans+n,0);
	for(int i=n-1;i>=0;i--){
		for(int j=0;j<G[i].size();j++){
			if(!used[G[i][j]]&&max(a[G[i][j]],b[G[i][j]])>i){
				ans[i] = 1;
				break;
			}
		}
		if(ans[i]) for(int j=0;j<G[i].size();j++) used[G[i][j]] = true;
	}
	bool flag = false;
	for(int i=n-1;i>=0;i--){
		if(flag||ans[i]){
			printf("%d",ans[i]);
			flag = true;
		}
	}
	printf("\n");
	return 0;
}
0