結果

問題 No.479 頂点は要らない
ユーザー tailstails
提出日時 2017-01-27 22:50:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 54 ms / 1,500 ms
コード長 414 bytes
コンパイル時間 1,350 ms
コンパイル使用メモリ 165,628 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-06-06 05:02:25
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 54 ms
10,624 KB
testcase_27 AC 51 ms
10,496 KB
testcase_28 AC 48 ms
13,568 KB
testcase_29 AC 35 ms
8,704 KB
testcase_30 AC 34 ms
8,576 KB
testcase_31 AC 34 ms
8,576 KB
testcase_32 AC 34 ms
8,576 KB
testcase_33 AC 35 ms
8,576 KB
testcase_34 AC 38 ms
8,576 KB
testcase_35 AC 30 ms
7,296 KB
testcase_36 AC 17 ms
6,940 KB
testcase_37 AC 38 ms
8,832 KB
testcase_38 AC 33 ms
8,064 KB
testcase_39 AC 24 ms
7,808 KB
testcase_40 AC 29 ms
8,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    7 | main(){
      | ^~~~
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d%d",&n,&m);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:12:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |                 scanf("%d%d",&a,&b);
      |                 ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

vector<int> av[100002];
set<int> aset;

main(){
	int n,m;
	scanf("%d%d",&n,&m);
	for(int j=0;j<m;++j){
		int a,b;
		scanf("%d%d",&a,&b);
		av[a].push_back(b);
	}
	bool on=false;
	for(int i=n-1;i>=0;--i){
		int r=0;
		for(int a:av[i]){
			if(aset.find(a)==aset.end()){
				r=1;
				on=true;
				aset.insert(i);
				break;
			}
		}
		if(on){
			putchar(r+48);
		}
	}
}
0