답안 #675979

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
675979 2022-12-28T17:23:25 Z sudheerays123 Temperature (POI11_tem) C++17
0 / 100
30 ms 65536 KB
#include<bits/stdc++.h>
using namespace std;
#define fast ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define ll long long int
const ll N = 1e5+5 , K = 110 , INF = 1e18 , MOD = 1e9+7 ;

ll dp[N][K];
vector<pair<ll,ll>> a(N);
ll n;

ll go(ll i , ll preval){

	if(i == n+1) return 0;
	if(preval != 0 && dp[i][preval] != -1) return dp[i][preval];
	
	ll ans = 0;
	for(ll val = a[i].first; val <= a[i].second; val++) if(preval == 0 || val >= preval) ans = max(ans,1+go(i+1,val));

	return dp[i][preval] = ans;
}

void solve(){

	cin >> n;
	for(ll i = 1; i <= n; i++){
		cin >> a[i].first >> a[i].second;
		a[i].first += 55;
		a[i].second += 55;
	}

	memset(dp,-1,sizeof dp);

	ll ans = 1;
	for(ll i = 1; i <= n; i++) ans = max(ans,go(i,0));

	cout << ans;
}

int main(){

	fast;

	ll tc = 1;
	// cin >> tc;
	while(tc--) solve();

	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 29 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 29 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 30 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 23 ms 3576 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 21 ms 3620 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 23 ms 3604 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 27 ms 3648 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 26 ms 3624 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 19 ms 3592 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 15 ms 3668 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 26 ms 3568 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 28 ms 3552 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -