結果
問題 | No.801 エレベーター |
ユーザー | snuke |
提出日時 | 2019-03-17 22:47:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,881 bytes |
コンパイル時間 | 1,577 ms |
コンパイル使用メモリ | 167,604 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-08 01:11:15 |
合計ジャッジ時間 | 5,507 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 62 ms
5,376 KB |
testcase_04 | AC | 63 ms
5,376 KB |
testcase_05 | AC | 62 ms
5,376 KB |
testcase_06 | AC | 59 ms
5,376 KB |
testcase_07 | AC | 61 ms
5,376 KB |
testcase_08 | AC | 63 ms
5,376 KB |
testcase_09 | AC | 59 ms
5,376 KB |
testcase_10 | AC | 60 ms
5,376 KB |
testcase_11 | AC | 58 ms
5,376 KB |
testcase_12 | AC | 60 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:152:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 152 | scanf("%d%d%d",&n,&m,&k); | ~~~~~^~~~~~~~~~~~~~~~~~~ main.cpp:156:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 156 | rep(i,m) scanf("%d%d",&l[i],&r[i]), --l[i]; | ~~~~~^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define fi first #define se second #define rep(i,n) for(int i = 0; i < (n); ++i) #define rrep(i,n) for(int i = 1; i <= (n); ++i) #define drep(i,n) for(int i = (n)-1; i >= 0; --i) #define srep(i,s,t) for (int i = s; i < t; ++i) #define rng(a) a.begin(),a.end() #define rrng(a) a.rbegin(),a.rend() #define maxs(x,y) (x = max(x,y)) #define mins(x,y) (x = min(x,y)) #define limit(x,l,r) max(l,min(x,r)) #define lims(x,l,r) (x = max(l,min(x,r))) #define isin(x,l,r) ((l) <= (x) && (x) < (r)) #define pb push_back #define sz(x) (int)(x).size() #define pcnt __builtin_popcountll #define uni(x) x.erase(unique(rng(x)),x.end()) #define snuke srand((unsigned)clock()+(unsigned)time(NULL)); #define show(x) cout<<#x<<" = "<<x<<endl; #define PQ(T) priority_queue<T,v(T),greater<T> > #define bn(x) ((1<<x)-1) #define dup(x,y) (((x)+(y)-1)/(y)) #define newline puts("") #define v(T) vector<T> #define vv(T) v(v(T)) using namespace std; typedef long long int ll; typedef unsigned uint; typedef unsigned long long ull; typedef pair<int,int> P; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<ll> vl; typedef vector<P> vp; inline int in() { int x; scanf("%d",&x); return x;} template<typename T>inline istream& operator>>(istream&i,v(T)&v) {rep(j,sz(v))i>>v[j];return i;} template<typename T>string join(const v(T)&v) {stringstream s;rep(i,sz(v))s<<' '<<v[i];return s.str().substr(1);} template<typename T>inline ostream& operator<<(ostream&o,const v(T)&v) {if(sz(v))o<<join(v);return o;} template<typename T1,typename T2>inline istream& operator>>(istream&i,pair<T1,T2>&v) {return i>>v.fi>>v.se;} template<typename T1,typename T2>inline ostream& operator<<(ostream&o,const pair<T1,T2>&v) {return o<<v.fi<<","<<v.se;} template<typename T>inline ll suma(const v(T)& a) { ll res(0); for (auto&& x : a) res += x; return res;} const double eps = 1e-10; const ll LINF = 1001002003004005006ll; const int INF = 1001001001; #define dame { puts("-1"); return 0;} #define yn {puts("YES");}else{puts("NO");} const int MX = 200005; const int mod = 1000000007; struct mint { ll x; mint():x(0){} mint(ll x):x((x%mod+mod)%mod){} // mint(ll x):x(x){} mint& fix() { x = (x%mod+mod)%mod; return *this;} mint operator-() const { return mint(0) - *this;} mint& operator+=(const mint& a){ if((x+=a.x)>=mod) x-=mod; return *this;} mint& operator-=(const mint& a){ if((x+=mod-a.x)>=mod) x-=mod; return *this;} mint& operator*=(const mint& a){ (x*=a.x)%=mod; return *this;} mint operator+(const mint& a)const{ return mint(*this) += a;} mint operator-(const mint& a)const{ return mint(*this) -= a;} mint operator*(const mint& a)const{ return mint(*this) *= a;} bool operator<(const mint& a)const{ return x < a.x;} bool operator==(const mint& a)const{ return x == a.x;} }; istream& operator>>(istream&i,mint&a){i>>a.x;return i;} ostream& operator<<(ostream&o,const mint&a){o<<a.x;return o;} typedef vector<mint> vm; // // Segment tree with lazy prop struct F { // sum func typedef mint TF; TF d; F(TF d=0):d(d) {} F& operator+=(const F& f) { d += f.d; return *this; } F operator+(const F& f) const { return F(*this) += f;} }; struct G { // lazy add func typedef mint TG; TG d; G(TG d=0):d(d) {} void operator()(F& f, int w) const { f.d += d*w; } void operator*=(const G& g) { d += g.d; } }; struct seg { struct FG { F f; G g; void apply(const G& _g, int w) { _g(f,w); g *= _g; } }; vector<FG> d; int n; seg(){} seg(int mx) { n = 1; while (n < mx) n <<= 1; d = vector<FG>(n<<1); } int width(int i) { return 1<<(__builtin_clz(i)-__builtin_clz(n));} void upd(int i) { d[i].f = d[i<<1].f+d[i<<1|1].f;} FG& operator[](int i) { return d[n+i];} void init() { drep(i,n) upd(i);} void prop(int i) { d[i<<1].apply(d[i].g, width(i<<1)); d[i<<1|1].apply(d[i].g, width(i<<1|1)); d[i].g = G(); } void add(int l, int r, G g) { add(l,r,g,1,0,n);} void add(int a, int b, const G& g, int i, int l, int r) { if (a <= l && r <= b) { d[i].apply(g, width(i)); return; } prop(i); int c = (l+r)>>1; if (a < c) add(a,b,g,i<<1,l,c); if (c < b) add(a,b,g,i<<1|1,c,r); upd(i); } F get(int l, int r) { return get(l,r,1,0,n);} F get(int a, int b, int i, int l, int r) { if (a <= l && r <= b) return d[i].f; prop(i); int c = (l+r)>>1; F res; if (a < c) res += get(a,b,i<<1,l,c); if (c < b) res += get(a,b,i<<1|1,c,r); return res; } }; // int main() { int n,m,k; scanf("%d%d%d",&n,&m,&k); seg t(n); t.add(0,1,G(1)); vi l(m), r(m); rep(i,m) scanf("%d%d",&l[i],&r[i]), --l[i]; rep(ki,k) { vm d(m); rep(i,m) d[i] = t.get(l[i],r[i]).d; t = seg(n); rep(i,m) t.add(l[i],r[i],d[i]); } mint ans = t.get(n-1,n).d; cout<<ans<<endl; return 0; }