結果
問題 | No.2154 あさかつの参加人数 |
ユーザー | nyst |
提出日時 | 2022-12-09 21:36:26 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 980 ms / 2,000 ms |
コード長 | 587 bytes |
コンパイル時間 | 1,050 ms |
コンパイル使用メモリ | 108,800 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 20:58:42 |
合計ジャッジ時間 | 21,746 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <iostream> #include <vector> #include <iomanip> #include <algorithm> #include <map> #include <cmath> #include <bitset> #include <string> #include <queue> #include <stack> #include <set> #include <tuple> // #include <atcoder/all> // using namespace atcoder; // using mint = modint998244353; using namespace std; int main() { int n,m;cin >> n >> m; vector<int> ans(n+1,0); for(int i=0;i<m;i++){ int l,r;cin >> l >>r; ans[l]++; ans[r-1]--; } for(int i=n;1<=i;i--) ans[i-1] += ans[i]; for(int i=n;1<=i;i--) cout << ans[i] << endl; }