On July 9, 1755, three British regiments marched to the front of the line of battle in Monongahela, Pennsylvania, during the French and Indian War. The leader of this group of around 1200 soldiers was an inexperienced, confident Colonel, who was tasked with receiving the surrender of Fort Duquesne, which was occupied by French forces. This British regiment fought the French army with unforeseen brutality. 2/3s of the regiment would be killed. Soon enough, the North American soil was stained with the blood of this particular regiment.… Read MoreThis statement was made by Sir Edward Grey in his defence of Great Britain’s declaration of war on Germany on 4 August 1914. The United Kingdom’s Foreign Secretary Grey’s justification of war is a primary source, as it originates from a historical moment and is one of importance, as it explains the reasoning of going to war. For this reason it allows both modern day readers and historians to gain an insight and understanding into the historical situation and the decisions that were made.… Read More

Williams Brown

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor, alias aspernatur quam voluptates sint, dolore doloribus voluptas labore temporibus earum eveniet, reiciendis.

Latest Posts



Archive


Tags


There’s no content to show here yet.

Leave a Reply

Your email address will not be published. Required fields are marked *

#include#includeusing namespace std;int changes[6];int dp[1001];int dp1[1001];int main() { int n, m; cin >> n >> m; for (int i = 0; i < n; i++) cin >> changes[i]; dp1[m] = 1; for (int i = 0; i < n; i++) { int k = 0; int cnt = m; for (int j = 1; j * changes[i] <= m; j++) { dp1[m-j*changes[i]] = dp1[m - j * changes[i]] + dp1[0]; } } cout << dp1[m];}//if(j*changes[i]+changes[i+1]){// dp[++dp[0]]=j*changes[i]+changes[i+1]