結果

問題 No.8107 Listening
ユーザー kotatsugamekotatsugame
提出日時 2024-04-01 22:43:13
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 69,436 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 22:38:33
合計ジャッジ時間 14,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
bool use[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N,M;
	cin>>N>>M;
	vector<int>ans;
	for(int i=1;i<=M;i++)
	{
		int u,v;cin>>u>>v;
		if(!use[u]&&!use[v])
		{
			ans.push_back(i);
			use[u]=use[v]=true;
		}
	}
	cout<<ans.size()<<"\n";
	for(int i:ans)cout<<i<<"\n";
}
0