結果
| 問題 |
No.2052 Indegree
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-05-06 14:27:50 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 533 bytes |
| コンパイル時間 | 5,130 ms |
| コンパイル使用メモリ | 309,072 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-23 22:16:34 |
| 合計ジャッジ時間 | 6,053 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define coutf(f) cout << fixed << setprecision(f)
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()
int main() {
int n, m;
cin >> n >> m;
vector<vector<int>> G(n);
rep(i, m) {
int a, b;
cin >> a >> b;
a--; b--;
G[b].push_back(a);
}
int ans = 0;
rep(i, n) {
if (G[i].size() == 0) ans++;
}
cout << ans << endl;
return 0;
}