답안 #776566

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
776566 2023-07-08T04:06:06 Z jamezzz Fish (IOI08_fish) C++17
70 / 100
758 ms 59480 KB
#include <bits/stdc++.h>
using namespace std;
 
#define sf scanf
#define pf printf
#define fi first
#define se second
#define pb push_back
#define sz(x) ((int)x.size())
#define all(x) x.begin(),x.end()
#define LINF 1023456789123456789
typedef long long ll;
typedef pair<int,int> ii;
typedef pair<ll,int> li;
 
#define maxn 500005
#define maxk 7005
 
int n,k,m,cnt[maxk],bad[maxk],pred[maxk];
bool num[maxk][maxk];
ll mn[maxn];
vector<ii> v;
vector<int> stuff[maxk];
 
int main(){
	sf("%d%d%d",&n,&k,&m);
	assert(n<=500000&&k<=7000);
    for(int i=0;i<n;++i){
		int l,c;
		sf("%d%d",&l,&c);
		v.pb({l,c});
		++cnt[c];
    }
    sort(all(v));
    for(int i=0;i<n;++i){
	    int c=v[i].se;
	    stuff[c].pb(i);
    }
    for(int i=1;i<=k;++i){
		for(int j:stuff[i]){
			if(v[j].fi*2<=v[stuff[i].back()].fi)++pred[i];
		}
	}
    int ptr=n-1;
    ll ans=0;
    fill(mn,mn+n+1,1);
    for(int i=n-1;i>=0;--i){
		int c=v[i].se;
		if(bad[c])continue;
		while(ptr>=0&&v[i].fi<2*v[ptr].fi){
			--cnt[v[ptr].se];
			--ptr;
		}
		vector<int> undo;
		for(int j=1;j<=k;++j){
			if(c==j)continue;
			int x=bad[j]?cnt[c]:0;
			if(!bad[j]||num[c][j]){
				mn[x+1]*=(cnt[j]+1);
				mn[x+1]%=m;
				undo.pb(x+1);
			}
		}
		ll add=1;
		for(int j=1;j<=cnt[c]+1;++j){
			add*=mn[j];
			add%=m;
			ans+=add;
			ans%=m;
		}
		for(int x:undo)mn[x]=1;
		for(int j=1;j<=k;++j){
			if(pred[j]==cnt[j])num[j][c]=true;
		}
		bad[c]=1;
		//pf("%lld\n",ans);
    }
    pf("%lld\n",ans);
}

Compilation message

fish.cpp: In function 'int main()':
fish.cpp:26:4: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   26 |  sf("%d%d%d",&n,&k,&m);
      |    ^
fish.cpp:30:5: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   30 |   sf("%d%d",&l,&c);
      |     ^
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 468 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Correct 1 ms 468 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Correct 120 ms 10908 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 852 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 724 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 46 ms 6000 KB Output is correct
2 Correct 61 ms 6904 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 62 ms 12812 KB Output is correct
2 Correct 11 ms 5652 KB Output is correct
3 Correct 27 ms 10148 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 96 ms 16264 KB Output is correct
2 Correct 184 ms 26924 KB Output is correct
3 Correct 190 ms 27016 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 149 ms 22944 KB Output is correct
2 Correct 199 ms 29620 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 272 ms 33012 KB Output is correct
2 Correct 758 ms 59480 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 724 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 724 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 784 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 724 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 724 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 744 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -