md.ashif313's blog

By md.ashif313, 9 years ago, In English

Google's hiring contest, APAC Kickstart 2017 Round E is going to held on Sunday, August 27, 2017 05:00 UTC – 08:00 UTC

Google

Ready to get started solving fun, challenging problems? Throughout the year, Code Jam hosts online Kickstart rounds to give students the opportunity to develop their coding skills, get acquainted with Code Jam’s competition arena, and potentially get noticed by Google recruiters, too. Participate in one—or join them all!

For more visit here.

  • Vote: I like it
  • +36
  • Vote: I do not like it

| Write comment?
»
9 years ago, hide # |
Rev. 2  
Vote: I like it -26 Vote: I do not like it
  • Is it rated?
  • Is dit gegradeer?
  • هل يتم تقييمه؟
  • Qiymətləndirilmişmi?
  • рэйтынг Ці з'яўляецца гэта?
  • Оценява ли се?
  • এটা রেট কি?
  • Je hodnoceno?
  • Αξιολογείται;
  • Értékelt?
  • Գնահատված է:
  • È valutato?
  • האם היא מדורגת?
  • それは評価されていますか?
  • Бағаланған ба?
  • វាត្រូវបានវាយតម្លៃ?
  • 등급이 매겨 졌습니까?
  • Is it rated?
  • ມັນຖືກຈັດອັນດັບ?
  • Ar jis vertinamas?
  • ഇത് റേറ്റുചെയ്തിട്ടുണ്ടോ?
  • Үүнийг үнэлдэг үү?
  • Adakah ia dinilai?
  • အဆင့်သတ်မှတ်ခဲ့ပါသလဲ?
  • Er det vurdert?
  • Czy jest oceniany?
  • Это оценено?
  • A është vlerësuar?
  • Да ли је оцијењен?
  • Na e baloa?
  • Je, ni lilipimwa?
  • ఇది రేట్ చేయబడిందా?
  • Na-rate ba ito?
  • Beğenilen mi?
  • Чи оцінюється?
  • Nó được đánh giá?
  • Ṣe o ṣe ayọkẹlẹ?
  • 是否评分?
»
9 years ago, hide # |
 
Vote: I like it +40 Vote: I do not like it

Did anyone got call due to his/her performance in KickStart Round D ???

»
9 years ago, hide # |
Rev. 3  
Vote: I like it 0 Vote: I do not like it

Where can we upload our resume on the kicktstart site? I have already registered

»
9 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

All solutions and explanations will update here soon after the contest ends. https://github.com/ckcz123/codejam

Good Luck!

»
9 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Round link anyone?

»
9 years ago, hide # |
 
Vote: I like it +54 Vote: I do not like it

Sadly no one get 100 scores, people who passed C large are all failed in A large.

»
9 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Can any one tell me how did they did B large?

»
9 years ago, hide # |
Rev. 3  
Vote: I like it +5 Vote: I do not like it

Can someone explain their solution for A-large?

I tried a dp solution but failed. Can somebody please point out the error? Let s be the string. State is dp[i] which is the minimum steps required to construct the string s[0..i]. Initialise dp[0] = 1 and dp[1] = 2. For every i in [2, length(s)-1], first do dp[i] = dp[i-1] + 1 which corresponds to the first operation. Or select some j < i and consider the string t = s[j..i]. Check if the string t can be formed by repeatedly concatenating some substring of itself and check whether that substring exists in s[0..j-1]. If it does, then dp[i] = min(dp[i], dp[j-1] + 1 + length(t)/l) where l is the length of repeating string we considered.

My code: Ideone

Thanks!

»
9 years ago, hide # |
 
Vote: I like it +31 Vote: I do not like it

What is the approach to solve C Large ???

»
9 years ago, hide # |
 
Vote: I like it +10 Vote: I do not like it

Here are some unofficial results after running plagiarism check on all the codes(includes both accepted and unaccepted submissions).
https://drive.google.com/drive/folders/0ByNcq665KLJhMWh6U1MwWEY0djQ

»
9 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

My rank is below 350 and in india below 100.I am in third year can i get chance of intership or not.

»
9 years ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

Hello everyone, here is the official analysis:

https://code.google.com/codejam/contest/12234486/dashboard#s=a&a=3